Sdílet prostřednictvím


WebSocketOptions.SubProtocolSelector Vlastnost

Definice

Získá nebo nastaví delegát, který bude volána při vytvoření nového protokolu WebSocket pro výběr hodnoty pro hlavičku odpovědi Sec-WebSocket-Protocol. Delegát bude volána se seznamem protokolů poskytovaných klientem v hlavičce požadavku 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)

Hodnota vlastnosti

Poznámky

Další podrobnosti o metodě handshake protokolu WebSocket najdete v dokumentu RFC 6455 oddíl 1.3: https://tools.ietf.org/html/rfc6455#section-1.3

Platí pro