IJsonRpcTracingCallbacks.OnMessageDeserialized(JsonRpcMessage, Object) Method
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
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.