ServerSettingsWith Method |
Returns a new ServerSettings instance with some settings changed.
Namespace:
MongoDB.Driver.Core.Configuration
Assembly:
MongoDB.Driver.Core (in MongoDB.Driver.Core.dll) Version: 2.5.0+57.Branch.master.Sha.6a4e00a2d91090c65a9b11364b9ebfdb9c7da076
Syntax public ServerSettings With(
Optional<TimeSpan> heartbeatInterval = null,
Optional<TimeSpan> heartbeatTimeout = null
)
Public Function With (
Optional heartbeatInterval As Optional(Of TimeSpan) = Nothing,
Optional heartbeatTimeout As Optional(Of TimeSpan) = Nothing
) As ServerSettings
member With :
?heartbeatInterval : Optional<TimeSpan> *
?heartbeatTimeout : Optional<TimeSpan>
(* Defaults:
let _heartbeatInterval = defaultArg heartbeatInterval null
let _heartbeatTimeout = defaultArg heartbeatTimeout null
*)
-> ServerSettings
Parameters
- heartbeatInterval (Optional)
- Type: MongoDB.DriverOptionalTimeSpan
The heartbeat interval. - heartbeatTimeout (Optional)
- Type: MongoDB.DriverOptionalTimeSpan
The heartbeat timeout.
Return Value
Type:
ServerSettingsA new ServerSettings instance.
See Also