WebSocketOptions.SubProtocolSelector Propriété
Définition
Important
Certaines informations portent sur la préversion du produit qui est susceptible d’être en grande partie modifiée avant sa publication. Microsoft exclut toute garantie, expresse ou implicite, concernant les informations fournies ici.
Obtient ou définit un délégué qui sera appelé lorsqu’un nouveau WebSocket est établi pour sélectionner la valeur de l’en-tête de réponse « Sec-WebSocket-Protocol ». Le délégué est appelé avec une liste des protocoles fournis par le client dans l’en-tête de requête « Sec-WebSocket-Protocol ».
public:
property Func<System::Collections::Generic::IList<System::String ^> ^, System::String ^> ^ SubProtocolSelector { Func<System::Collections::Generic::IList<System::String ^> ^, System::String ^> ^ get(); void set(Func<System::Collections::Generic::IList<System::String ^> ^, System::String ^> ^ value); };
public Func<System.Collections.Generic.IList<string>,string> SubProtocolSelector { get; set; }
public Func<System.Collections.Generic.IList<string>,string>? SubProtocolSelector { get; set; }
member this.SubProtocolSelector : Func<System.Collections.Generic.IList<string>, string> with get, set
Public Property SubProtocolSelector As Func(Of IList(Of String), String)
Valeur de propriété
Remarques
Pour plus d’informations sur l’établissement d’une liaison WebSocket, consultez la section 1.3 de la RFC 6455 : https://tools.ietf.org/html/rfc6455#section-1.3