WebSocketOptions.SubProtocolSelector Proprietà

Definizione

Ottiene o imposta un delegato che verrà chiamato quando viene stabilito un nuovo WebSocket per selezionare il valore per l'intestazione di risposta "Sec-WebSocket-Protocol". Il delegato verrà chiamato con un elenco dei protocolli forniti dal client nell'intestazione di richiesta "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)

Valore della proprietà

Commenti

Per altre informazioni sulla handshake WebSocket, vedere la sezione RFC 64555 sezione 1.3: https://tools.ietf.org/html/rfc6455#section-1.3

Si applica a