共用方式為


WebSocketOptions.SubProtocolSelector 屬性

定義

取得或設定委派,這個委派會在建立新的 WebSocket 時呼叫,以選取 'Sec-WebSocket-Protocol' 回應標頭的值。 委派將會使用用戶端在 '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

適用於