IHubProtocol 介面
定義
重要
部分資訊涉及發行前產品,在發行之前可能會有大幅修改。 Microsoft 對此處提供的資訊,不做任何明確或隱含的瑕疵擔保。
與 SignalR 中樞通訊的通訊協定抽象概念。
public interface class IHubProtocol
public interface IHubProtocol
type IHubProtocol = interface
Public Interface IHubProtocol
- 衍生
屬性
Name |
取得通訊協定的名稱。 SignalR 會使用名稱來解析用戶端與伺服器之間的通訊協定。 |
TransferFormat |
取得通訊協定的傳輸格式。 |
Version |
取得通訊協定的主要版本。 |
方法
GetMessageBytes(HubMessage) |
將指定的 HubMessage 轉換為其序列化標記法。 |
IsVersionSupported(Int32) |
取得值,指出通訊協定是否支援指定的版本。 |
TryParseMessage(ReadOnlySequence<Byte>, IInvocationBinder, HubMessage) |
使用指定的系結器,從指定的序列化標記法建立新的 HubMessage 。 |
WriteMessage(HubMessage, IBufferWriter<Byte>) |
將指定的 HubMessage 寫入器。 |
擴充方法
GetMessageBytes(IHubProtocol, HubMessage) |
將指定的 HubMessage 轉換為其序列化標記法。 |