IHubProtocolResolver.GetProtocol(String, IReadOnlyList<String>) 方法
定義
重要
部分資訊涉及發行前產品,在發行之前可能會有大幅修改。 Microsoft 對此處提供的資訊,不做任何明確或隱含的瑕疵擔保。
如果支援通訊協定的指定清單允許,則取得具有指定名稱的中樞通訊協定。
public:
Microsoft::AspNetCore::SignalR::Protocol::IHubProtocol ^ GetProtocol(System::String ^ protocolName, System::Collections::Generic::IReadOnlyList<System::String ^> ^ supportedProtocols);
public Microsoft.AspNetCore.SignalR.Protocol.IHubProtocol GetProtocol (string protocolName, System.Collections.Generic.IReadOnlyList<string> supportedProtocols);
public Microsoft.AspNetCore.SignalR.Protocol.IHubProtocol? GetProtocol (string protocolName, System.Collections.Generic.IReadOnlyList<string>? supportedProtocols);
abstract member GetProtocol : string * System.Collections.Generic.IReadOnlyList<string> -> Microsoft.AspNetCore.SignalR.Protocol.IHubProtocol
Public Function GetProtocol (protocolName As String, supportedProtocols As IReadOnlyList(Of String)) As IHubProtocol
參數
- protocolName
- String
通訊協定名稱。
- supportedProtocols
- IReadOnlyList<String>
支援的通訊協定集合。
傳回
比對 IHubProtocolnull
,如果找不到相符的通訊協定,則為 。