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.12.2+a4a3888f4fb51bb518b1eb5002effc2d47f2ea6a
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