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.8.0+cc573f3e1f48f39162b4b680e921a623e127e8fa
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