次の方法で共有


WebSocketOptions.SubProtocolSelector プロパティ

定義

'Sec-WebSocket-Protocol' 応答ヘッダーの値を選択するために新しい WebSocket が確立されたときに呼び出されるデリゲートを取得または設定します。 デリゲートは、"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)

プロパティ値

注釈

WebSocket ハンドシェイクの詳細については、RFC 6455 セクション 1.3 を参照してください。 https://tools.ietf.org/html/rfc6455#section-1.3

適用対象