Compartir a través de


StreamSocketControl.MinProtectionLevel Propiedad

Definición

Restringe la versión del protocolo TLS que se negociará cuando el desarrollador use los métodos ConnectAsync() o UpgradeToSslAsync() que requieren TLS.

public:
 property SocketProtectionLevel MinProtectionLevel { SocketProtectionLevel get(); void set(SocketProtectionLevel value); };
SocketProtectionLevel MinProtectionLevel();

void MinProtectionLevel(SocketProtectionLevel value);
public SocketProtectionLevel MinProtectionLevel { get; set; }
var socketProtectionLevel = streamSocketControl.minProtectionLevel;
streamSocketControl.minProtectionLevel = socketProtectionLevel;
Public Property MinProtectionLevel As SocketProtectionLevel

Valor de propiedad

Miembro de enumeración SocketProtectionLevel que indica el nivel de protección del socket.

Requisitos de Windows

Familia de dispositivos
Windows 10 Fall Creators Update (se introdujo en la versión 10.0.16299.0)
API contract
Windows.Foundation.UniversalApiContract (se introdujo en la versión v5.0)

Comentarios

Cuando el servidor no cumple la versión tls especificada por MinProtectionLevel, la ejecución ConnectAsync() o UpgradeToSslAsnc() correspondiente se comportará igual que si el servidor no admite SSL o TLS.

Se aplica a

Consulte también