WebSocketOptions.SubProtocolSelector Propriedade
Definição
Importante
Algumas informações se referem a produtos de pré-lançamento que podem ser substancialmente modificados antes do lançamento. A Microsoft não oferece garantias, expressas ou implícitas, das informações aqui fornecidas.
Obtém ou define um delegado que será chamado quando um novo WebSocket for estabelecido para selecionar o valor do cabeçalho de resposta 'Sec-WebSocket-Protocol'. O delegado será chamado com uma lista dos protocolos fornecidos pelo cliente no cabeçalho de solicitação '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)
Valor da propriedade
Comentários
Confira a seção 1.3 do RFC 6455 para obter mais detalhes sobre o handshake do WebSocket: https://tools.ietf.org/html/rfc6455#section-1.3