Click or drag to resize

ConnectionSettings Constructor

Initializes a new instance of the ConnectionSettings class.

Namespace:  MongoDB.Driver.Core.Configuration
Assembly:  MongoDB.Driver.Core (in MongoDB.Driver.Core.dll) Version: 2.19.1+3a2a09dd959482f665ffbb5df2557ec541597af4
Syntax
public ConnectionSettings(
	Optional<IEnumerable<IAuthenticatorFactory>> authenticatorFactories = default,
	Optional<IEnumerable<CompressorConfiguration>> compressors = default,
	Optional<bool> loadBalanced = default,
	Optional<TimeSpan> maxIdleTime = default,
	Optional<TimeSpan> maxLifeTime = default,
	Optional<string> applicationName = default
)

Parameters

authenticatorFactories (Optional)
Type: MongoDB.DriverOptionalIEnumerableIAuthenticatorFactory
The authenticator factories.
compressors (Optional)
Type: MongoDB.DriverOptionalIEnumerableCompressorConfiguration
The compressors.
loadBalanced (Optional)
Type: MongoDB.DriverOptionalBoolean
Whether the load balanced mode is enabled.
maxIdleTime (Optional)
Type: MongoDB.DriverOptionalTimeSpan
The maximum idle time.
maxLifeTime (Optional)
Type: MongoDB.DriverOptionalTimeSpan
The maximum life time.
applicationName (Optional)
Type: MongoDB.DriverOptionalString
The application name.
See Also