Click or drag to resize

EncryptOptions Constructor (String, OptionalString, OptionalNullableGuid, OptionalNullableInt64, OptionalString, OptionalRangeOptions)

Initializes a new instance of the EncryptOptions class.

Namespace:  MongoDB.Driver.Encryption
Assembly:  MongoDB.Driver (in MongoDB.Driver.dll) Version: 2.20.0+ee01960089f28ea1b501690df5fc9f6318a70242
Syntax
public EncryptOptions(
	string algorithm,
	Optional<string> alternateKeyName = null,
	Optional<Nullable<Guid>> keyId = null,
	Optional<Nullable<long>> contentionFactor = null,
	Optional<string> queryType = null,
	Optional<RangeOptions> rangeOptions = null
)

Parameters

algorithm
Type: SystemString
The encryption algorithm.
alternateKeyName (Optional)
Type: MongoDB.DriverOptionalString
The alternate key name.
keyId (Optional)
Type: MongoDB.DriverOptionalNullableGuid
The key Id.
contentionFactor (Optional)
Type: MongoDB.DriverOptionalNullableInt64
The contention factor.
queryType (Optional)
Type: MongoDB.DriverOptionalString
The query type.
rangeOptions (Optional)
Type: MongoDB.DriverOptionalRangeOptions
The range options.
See Also