Click or drag to resize

TcpStreamSettingsWith Method

Returns a new TcpStreamSettings instance with some settings changed.

Namespace:  MongoDB.Driver.Core.Configuration
Assembly:  MongoDB.Driver.Core (in MongoDB.Driver.Core.dll) Version: 2.18.0+554c799eb1ec8dd732f16c739387f6664df1ba7a
Syntax
public TcpStreamSettings With(
	Optional<AddressFamily> addressFamily = default,
	Optional<TimeSpan> connectTimeout = default,
	Optional<TimeSpan?> readTimeout = default,
	Optional<int> receiveBufferSize = default,
	Optional<int> sendBufferSize = default,
	Optional<Action<Socket>> socketConfigurator = default,
	Optional<TimeSpan?> writeTimeout = default
)

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.

Return Value

Type: TcpStreamSettings
A new TcpStreamSettings instance.
See Also