Click or drag to resize

TcpStreamSettings Constructor

Initializes a new instance of the TcpStreamSettings class.

Namespace:  MongoDB.Driver.Core.Configuration
Assembly:  MongoDB.Driver.Core (in MongoDB.Driver.Core.dll) Version: 2.13.1-v2-13-x1+a7f8afe27855f38f4f72157d11ba2ae73895502e
Syntax
public TcpStreamSettings(
	Optional<AddressFamily> addressFamily = null,
	Optional<TimeSpan> connectTimeout = null,
	Optional<Nullable<TimeSpan>> readTimeout = null,
	Optional<int> receiveBufferSize = null,
	Optional<int> sendBufferSize = null,
	Optional<Action<Socket>> socketConfigurator = null,
	Optional<Nullable<TimeSpan>> writeTimeout = null
)

Parameters

addressFamily (Optional)
Type: MongoDB.DriverOptionalAddressFamily
The address family.
connectTimeout (Optional)
Type: MongoDB.DriverOptionalTimeSpan
The connect timeout.
readTimeout (Optional)
Type: MongoDB.DriverOptionalNullableTimeSpan
The read timeout.
receiveBufferSize (Optional)
Type: MongoDB.DriverOptionalInt32
Size of the receive buffer.
sendBufferSize (Optional)
Type: MongoDB.DriverOptionalInt32
Size of the send buffer.
socketConfigurator (Optional)
Type: MongoDB.DriverOptionalActionSocket
The socket configurator.
writeTimeout (Optional)
Type: MongoDB.DriverOptionalNullableTimeSpan
The write timeout.
See Also