Partager via


WebSocketOptions.SubProtocolSelector Propriété

Définition

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

S’applique à