IHubProtocol.TryParseMessage メソッド

定義

指定したシリアル化された表現から、指定したバインダーを使用して、新しい HubMessage を作成します。

public:
 bool TryParseMessage(System::Buffers::ReadOnlySequence<System::Byte> % input, Microsoft::AspNetCore::SignalR::IInvocationBinder ^ binder, [Runtime::InteropServices::Out] Microsoft::AspNetCore::SignalR::Protocol::HubMessage ^ % message);
public bool TryParseMessage (ref System.Buffers.ReadOnlySequence<byte> input, Microsoft.AspNetCore.SignalR.IInvocationBinder binder, out Microsoft.AspNetCore.SignalR.Protocol.HubMessage message);
public bool TryParseMessage (ref System.Buffers.ReadOnlySequence<byte> input, Microsoft.AspNetCore.SignalR.IInvocationBinder binder, out Microsoft.AspNetCore.SignalR.Protocol.HubMessage? message);
abstract member TryParseMessage : ReadOnlySequence * Microsoft.AspNetCore.SignalR.IInvocationBinder * HubMessage -> bool
Public Function TryParseMessage (ByRef input As ReadOnlySequence(Of Byte), binder As IInvocationBinder, ByRef message As HubMessage) As Boolean

パラメーター

input
ReadOnlySequence<Byte>

メッセージのシリアル化された表現。

binder
IInvocationBinder

メッセージの解析に使用されるバインダー。

message
HubMessage

このメソッドが を返すと、 true解析されたメッセージが格納されます。

戻り値

が正常に解析された場合HubMessageは であるtrue値。それ以外の場合falseは 。

適用対象