SocketOptionLevel Enumeration
.NET Framework (current version)
Defines socket option levels for the Socket::SetSocketOption and Socket::GetSocketOption methods.
Assembly: System (in System.dll)
The SocketOptionLevel enumeration defines the socket option levels that can be passed to the Socket::SetSocketOption and Socket::GetSocketOption methods. SocketOptionName enumerated values are grouped by SocketOptionLevel.
Note To use IPv6 on Windows XP, install Advance Networking Pack for Windows XP.
The following example uses this enumeration to set socket options.
// Specifies that send operations will time-out // if confirmation is not received within 1000 milliseconds. s->SetSocketOption( SocketOptionLevel::Socket, SocketOptionName::SendTimeout, 1000 ); // Specifies that the Socket will linger for 10 seconds after Close is called. LingerOption^ lingerOption = gcnew LingerOption( true,10 ); s->SetSocketOption( SocketOptionLevel::Socket, SocketOptionName::Linger, lingerOption );
.NET Framework
Available since 1.1
Available since 1.1
Show: