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.9.0+32b058abcdf2c7e8d9dd3a676d207b31897eee2e
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