Share via


IJsonRpcTracingCallbacks.OnMessageDeserialized(JsonRpcMessage, Object) Method

Definition

Occurs when the IJsonRpcMessageFormatter has deserialized an incoming message.

public void OnMessageDeserialized (StreamJsonRpc.Protocol.JsonRpcMessage message, object encodedMessage);
abstract member OnMessageDeserialized : StreamJsonRpc.Protocol.JsonRpcMessage * obj -> unit
Public Sub OnMessageDeserialized (message As JsonRpcMessage, encodedMessage As Object)

Parameters

message
JsonRpcMessage

The JSON-RPC message.

encodedMessage
Object

The encoded form of the message. Calling ToString() on this should produce the JSON-RPC text of the message.

Applies to