|  | Transport Class | 
 Inheritance Hierarchy
Inheritance HierarchyNamespace: Akka.Remote.Transport
 Syntax
SyntaxThe Transport type exposes the following members.
 Constructors
Constructors Properties
Properties| Name | Description | |
|---|---|---|
|  | Config | 
            TBD
             | 
|  | MaximumPayloadBytes | 
            TBD
             | 
|  | SchemeIdentifier | 
            TBD
             | 
|  | System | 
            TBD
             | 
 Methods
Methods| Name | Description | |
|---|---|---|
|  | Associate | 
            Asynchronously opens a logical duplex link between two Transport entities over a network. It could be backed
            with a real transport layer connection (TCP), socketless connections provided over datagram protocols (UDP), and more.
            
            This call returns a Task of an AssociationHandle. A faulted Task indicates that the association attempt was
            unsuccessful. If the exception is InvalidAssociationException then the association request was invalid and it's
            impossible to recover.
             | 
|  | Equals | Determines whether the specified object is equal to the current object.(Inherited from Object.) | 
|  | Finalize | Allows an object to try to free resources and perform other cleanup operations before it is reclaimed by garbage collection.(Inherited from Object.) | 
|  | GetHashCode | Serves as the default hash function. (Inherited from Object.) | 
|  | GetType | Gets the Type of the current instance.(Inherited from Object.) | 
|  | IsResponsibleFor | 
            TBD
             | 
|  | Listen | 
            TBD
             | 
|  | ManagementCommand | 
            This method allows upper layers to send management commands to the transport. It is the responsibility of the sender to
            send appropriate commands to different transport implementations. Unknown commands will be ignored.
             | 
|  | MemberwiseClone | Creates a shallow copy of the current Object.(Inherited from Object.) | 
|  | Shutdown | 
            Shuts down the transport layer and releases all of the corresponding resources. Shutdown is asynchronous and is signaled
            by the result of the returned Task.
            
            The transport SHOULD try flushing pending writes before becoming completely closed.
             | 
|  | ToString | Returns a string that represents the current object.(Inherited from Object.) | 
 Extension Methods
Extension Methods| Name | Description | |
|---|---|---|
|  | AsInstanceOfT | 
            TBD
            (Defined by Extensions.) | 
|  | Match | Overloaded. 
            Matches the specified target.
            (Defined by PatternMatch.) | 
|  | MatchT | Overloaded. 
            Matches the specified target and return a result of target processing.
            (Defined by PatternMatch.) | 
 See Also
See Also