Click or drag to resize

EncryptOptionsWith Method

Returns a new EncryptOptions instance with some settings changed.

Namespace:  MongoDB.Driver.Encryption
Assembly:  MongoDB.Driver (in MongoDB.Driver.dll) Version: 2.19.1+3a2a09dd959482f665ffbb5df2557ec541597af4
Syntax
public EncryptOptions With(
	Optional<string> algorithm = default,
	Optional<string> alternateKeyName = default,
	Optional<Guid?> keyId = default,
	Optional<long?> contentionFactor = default,
	Optional<string> queryType = default,
	Optional<RangeOptions> rangeOptions = default
)

Parameters

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

Return Value

Type: EncryptOptions
A new EncryptOptions instance.
See Also