TransportType Enum
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Defines transport types for the SocketPermission and Socket classes.
public enum class TransportType
public enum TransportType
type TransportType =
Public Enum TransportType
- Inheritance
Fields
Name | Value | Description |
---|---|---|
Connectionless | 1 | The transport type is connectionless, such as UDP. Specifying this value has the same effect as specifying Udp. |
Udp | 1 | UDP transport. |
ConnectionOriented | 2 | The transport is connection oriented, such as TCP. Specifying this value has the same effect as specifying Tcp. |
Tcp | 2 | TCP transport. |
All | 3 | All transport types. |
Remarks
The TransportType enumeration defines transport types for the SocketPermission and Socket classes.