PipeMessageHandler.Write(JsonRpcMessage, CancellationToken) 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.
Writes a message to the pipe.
protected abstract void Write (StreamJsonRpc.Protocol.JsonRpcMessage content, System.Threading.CancellationToken cancellationToken);
abstract member Write : StreamJsonRpc.Protocol.JsonRpcMessage * System.Threading.CancellationToken -> unit
Protected MustOverride Sub Write (content As JsonRpcMessage, cancellationToken As CancellationToken)
Parameters
- content
- JsonRpcMessage
The message to write.
- cancellationToken
- CancellationToken
A token to cancel the transmission.
Remarks
Implementations may assume the method is never called before the previous call has completed. They can assume their caller will invoke FlushAsync(CancellationToken) on their behalf after writing is completed.