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.15.0+f503bf610759c13f78cff9a3c01e91453185d2ed
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