Click or drag to resize

IConnectionReceiveMessageAsync Method

Receives a message.

Namespace:  MongoDB.Driver.Core.Connections
Assembly:  MongoDB.Driver.Core (in MongoDB.Driver.Core.dll) Version: 2.12.2+a4a3888f4fb51bb518b1eb5002effc2d47f2ea6a
Syntax
Task<ResponseMessage> ReceiveMessageAsync(
	int responseTo,
	IMessageEncoderSelector encoderSelector,
	MessageEncoderSettings messageEncoderSettings,
	CancellationToken cancellationToken
)

Parameters

responseTo
Type: SystemInt32
The id of the sent message for which a response is to be received.
encoderSelector
Type: MongoDB.Driver.Core.WireProtocol.Messages.EncodersIMessageEncoderSelector
The encoder selector.
messageEncoderSettings
Type: MongoDB.Driver.Core.WireProtocol.Messages.EncodersMessageEncoderSettings
The message encoder settings.
cancellationToken
Type: System.ThreadingCancellationToken
The cancellation token.

Return Value

Type: TaskResponseMessage
A Task whose result is the response message.
See Also