SocketOptionLevel Enumeração
Importante
Algumas informações se referem a produtos de pré-lançamento que podem ser substancialmente modificados antes do lançamento. A Microsoft não oferece garantias, expressas ou implícitas, das informações aqui fornecidas.
Define os níveis de opção de soquete para os métodos SetSocketOption(SocketOptionLevel, SocketOptionName, Int32) e GetSocketOption(SocketOptionLevel, SocketOptionName).
public enum class SocketOptionLevel
public enum SocketOptionLevel
type SocketOptionLevel =
Public Enum SocketOptionLevel
- Herança
IP | 0 | As opções Socket se aplicam aos soquetes IP. |
IPv6 | 41 | As opções Socket se aplicam aos soquetes IPv6. |
Socket | 65535 | As opções Socket se aplicam a todos os soquetes. |
Tcp | 6 | As opções Socket se aplicam aos soquetes TCP. |
Udp | 17 | As opções Socket se aplicam aos soquetes UDP. |
O exemplo a seguir usa essa enumeração para definir opções de soquete.
// 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);
// The socket will linger for 10 seconds after Socket.Close is called.
var lingerOption = new LingerOption(true, 10);
s.SetSocketOption(SocketOptionLevel.Socket, SocketOptionName.Linger, lingerOption);
' The socket will linger for 10 seconds after Socket.Close is called.
Dim lingerOption As New LingerOption(True, 10)
s.SetSocketOption(SocketOptionLevel.Socket, SocketOptionName.Linger, lingerOption)
A SocketOptionLevel enumeração define os níveis de opção de soquete que podem ser passados para os Socket.SetSocketOption métodos e Socket.GetSocketOption . SocketOptionName Os valores enumerados são agrupados por SocketOptionLevel.
Nota Para usar o IPv6 no Windows XP, instale o Pacote de Rede Avançado para Windows XP.
Produto | Versões |
---|---|
.NET | Core 1.0, Core 1.1, Core 2.0, Core 2.1, Core 2.2, Core 3.0, Core 3.1, 5, 6, 7, 8, 9 |
.NET Framework | 1.1, 2.0, 3.0, 3.5, 4.0, 4.5, 4.5.1, 4.5.2, 4.6, 4.6.1, 4.6.2, 4.7, 4.7.1, 4.7.2, 4.8, 4.8.1 |
.NET Standard | 1.3, 1.4, 1.6, 2.0, 2.1 |
Comentários do .NET
O .NET é um projeto código aberto. Selecione um link para fornecer comentários: