Click or drag to resize

WriteConcernWith Method (String, OptionalNullableTimeSpan, OptionalNullableBoolean, OptionalNullableBoolean)

Returns a new instance of WriteConcern with some values changed.

Namespace:  MongoDB.Driver
Assembly:  MongoDB.Driver.Core (in MongoDB.Driver.Core.dll) Version: 2.5.0+57.Branch.master.Sha.6a4e00a2d91090c65a9b11364b9ebfdb9c7da076
Syntax
public WriteConcern With(
	string mode,
	Optional<Nullable<TimeSpan>> wTimeout = null,
	Optional<Nullable<bool>> fsync = null,
	Optional<Nullable<bool>> journal = null
)

Parameters

mode
Type: SystemString
The mode.
wTimeout (Optional)
Type: MongoDB.DriverOptionalNullableTimeSpan
The wtimeout value.
fsync (Optional)
Type: MongoDB.DriverOptionalNullableBoolean
The fsync value.
journal (Optional)
Type: MongoDB.DriverOptionalNullableBoolean
The journal value.

Return Value

Type: WriteConcern
A WriteConcern.
See Also