Click or drag to resize

IConnection.ReceiveMessageAsync Method

Receives a message.

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

Parameters

responseTo
Type: System.Int32
The id of the sent message for which a response is to be received.
encoderSelector
Type: MongoDB.Driver.Core.WireProtocol.Messages.Encoders.IMessageEncoderSelector
The encoder selector.
messageEncoderSettings
Type: MongoDB.Driver.Core.WireProtocol.Messages.Encoders.MessageEncoderSettings
The message encoder settings.
cancellationToken
Type: System.Threading.CancellationToken
The cancellation token.

Return Value

Type: Task<ResponseMessage>
A Task whose result is the response message.
See Also