.NET Framework Class Library
TransportType Enumeration
[This documentation is for preview only, and is subject to change in later releases. Blank topics are included as placeholders.]
Defines transport types for the SocketPermission and Socket classes.
Namespace: System.Net
Assembly: System (in System.dll)
Syntax
Visual Basic
Public Enumeration TransportType
C#
public enum TransportType
Visual C++
public enum class TransportType
F#
type TransportType
Members
| Member name | Description | |
|---|---|---|
| Udp | UDP transport. | |
| Connectionless | The transport type is connectionless, such as UDP. Specifying this value has the same effect as specifying Udp. | |
| Tcp | TCP transport. | |
| ConnectionOriented | The transport is connection oriented, such as TCP. Specifying this value has the same effect as specifying Tcp. | |
| All | All transport types. |
Remarks
The TransportType enumeration defines transport types for the SocketPermission and Socket classes.
Version Information
.NET Framework
Supported in: 4.5, 4, 3.5, 3.0, 2.0, 1.1, 1.0.NET Framework Client Profile
Supported in: 4, 3.5 SP1Platforms
Windows 8 Consumer Preview, Windows Server 8 Beta, Windows 7, Windows Server 2008 SP2, Windows Server 2008 R2 (Server Core Role supported with SP1 or later; Itanium not supported)
The .NET Framework does not support all versions of every platform. For a list of the supported versions, see .NET Framework System Requirements.
See Also