Classes | |
class | Details_SocketException |
Represents the exception thrown when a socket error occurs. Never create instances of this class manually. Use the SocketException class instead. Never wrap the SocketException class instances into System::SmartPtr. | |
class | IPPacketInformation |
Represents information about the packet. Objects of this class should only be allocated using System::MakeObject() function. Never create instance of this type on stack or using operator new, as it will result in runtime errors and/or assertion faults. Always wrap this class into System::SmartPtr pointer and use this pointer to pass it to functions as argument. More... | |
class | LingerOption |
Specifies whether a socket will remain connected after a call to the Close() or Close() methods. It also specifies the period the socket will remain connected if sending of the data continues. Objects of this class should only be allocated using System::MakeObject() function. Never create instance of this type on stack or using operator new, as it will result in runtime errors and/or assertion faults. Always wrap this class into System::SmartPtr pointer and use this pointer to pass it to functions as argument. More... | |
class | NetworkStream |
Provides the underlying stream of the data for the network access. Objects of this class should only be allocated using System::MakeObject() function. Never create instance of this type on stack or using operator new, as it will result in runtime errors and/or assertion faults. Always wrap this class into System::SmartPtr pointer and use this pointer to pass it to functions as argument. More... | |
class | Socket |
The Socket class implements the Berkeley sockets interface. More... | |
class | TcpClient |
Represents a client for the TCP network services. Objects of this class should only be allocated using System::MakeObject() function. Never create instance of this type on stack or using operator new, as it will result in runtime errors and/or assertion faults. Always wrap this class into System::SmartPtr pointer and use this pointer to pass it to functions as argument. More... | |
class | TcpListener |
Represents a listener for the TCP network services. Objects of this class should only be allocated using System::MakeObject() function. Never create instance of this type on stack or using operator new, as it will result in runtime errors and/or assertion faults. Always wrap this class into System::SmartPtr pointer and use this pointer to pass it to functions as argument. More... | |
class | UdpClient |
Provides User Datagram Protocol (UDP) network services. Objects of this class should only be allocated using System::MakeObject() function. Never create instance of this type on stack or using operator new, as it will result in runtime errors and/or assertion faults. Always wrap this class into System::SmartPtr pointer and use this pointer to pass it to functions as argument. More... | |
Typedefs | |
using | SocketException = System::ExceptionWrapper<Details_SocketException> |
Enumerations | |
enum class | SocketType |
Enumerates the socket types. More... | |
enum class | AddressFamily |
Enumerates the address families. More... | |
enum class | IOControlCode : int64_t |
Enumerates the IO control codes. More... | |
enum class | ProtocolFamily |
Enumerates the protocol families. More... | |
enum class | ProtocolType |
Enumerates the protocol types. More... | |
enum class | SelectMode |
Specifies the mode for polling the status of the socket. More... | |
enum class | SocketError |
Enumerates the socket error types. More... | |
enum class | SocketFlags |
Provides constant values for the socket messages. More... | |
enum class | SocketOptionLevel |
Defines socket option levels for the 'Socket' class. More... | |
enum class | SocketOptionName |
Defines socket option names for the Socket class. More... | |
enum class | SocketShutdown |
Defines constants used by the Socket.Shutdown method. More... | |
Functions | |
bool | operator== (IPPacketInformation left, IPPacketInformation right) |
bool | operator!= (IPPacketInformation left, IPPacketInformation right) |
using System::Net::Sockets::SocketException = System::ExceptionWrapper<Details_SocketException> |
|
strong |
Enumerates the address families.
|
strong |
Enumerates the IO control codes.
|
strong |
Enumerates the protocol families.
|
strong |
Enumerates the protocol types.
Enumerator | |
---|---|
IP | The Internet Protocol. |
IPv6HopByHopOptions | The IPv6 Hop by Hop Options header. |
Icmp | The Internet Control Message Protocol. |
Igmp | The Internet Group Management Protocol. |
Ggp | The Gateway To Gateway Protocol. |
IPv4 | The Internet Protocol version 4. |
Tcp | The Transmission Control Protocol. |
Pup | The PARC Universal Packet Protocol. |
Udp | The User Datagram Protocol. |
Idp | The Internet Datagram Protocol. |
IPv6 | The Internet Protocol version 6. |
IPv6RoutingHeader | The IPv6 Routing header. |
IPv6FragmentHeader | The IPv6 Fragment header. |
IPSecEncapsulatingSecurityPayload | The IPv6 Encapsulating Security Payload header. |
IPSecAuthenticationHeader | The IPv6 Authentication header. |
IcmpV6 | The Internet Control Message Protocol for IPv6. |
IPv6NoNextHeader | The IPv6 No next header. |
IPv6DestinationOptions | The IPv6 Destination Options header. |
ND | The Net Disk protocol. |
Raw | The Raw IP packet protocol. |
Unspecified | An unspecified protocol. |
Ipx | The Internet Packet Exchange protocol. |
Spx | The Sequenced Packet Exchange protocol. |
SpxII | The Sequenced Packet Exchange version 2 protocol. |
Unknown | An unknown protocol. |
|
strong |
|
strong |
Enumerates the socket error types.
|
strong |
Provides constant values for the socket messages.
|
strong |
Defines socket option levels for the 'Socket' class.
|
strong |
Defines socket option names for the Socket class.
|
strong |
Defines constants used by the Socket.Shutdown method.
Enumerator | |
---|---|
Receive | Disables the socket for receiving. |
Send | Disables the socket for sending. |
Both | Disables the socket for both sending and receiving. |
|
strong |
Enumerates the socket types.
bool System::Net::Sockets::operator!= | ( | IPPacketInformation | left, |
IPPacketInformation | right ) |
bool System::Net::Sockets::operator== | ( | IPPacketInformation | left, |
IPPacketInformation | right ) |