Condividi tramite


MessagePackHubProtocol.TryParseMessage Metodo

Definizione

Crea un nuovo HubMessage oggetto dalla rappresentazione serializzata specificata e utilizzando il binder specificato.

public:
 virtual 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
override this.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

Parametri

input
ReadOnlySequence<Byte>

Rappresentazione serializzata del messaggio.

binder
IInvocationBinder

Gestore di associazione utilizzato per analizzare il messaggio.

message
HubMessage

Quando questo metodo restituisce true, contiene il messaggio analizzato.

Restituisce

Valore che è true se l'oggetto HubMessage è stato analizzato correttamente; in caso contrario, false.

Implementazioni

Si applica a