ClientEncryptionRewrapManyDataKey Method |
Decrypts multiple data keys and (re-)encrypts them with a new masterKey, or with their current masterKey if a new one is not given.
Namespace:
MongoDB.Driver.Encryption
Assembly:
MongoDB.Driver (in MongoDB.Driver.dll) Version: 2.19.1+3a2a09dd959482f665ffbb5df2557ec541597af4
Syntax public RewrapManyDataKeyResult RewrapManyDataKey(
FilterDefinition<BsonDocument> filter,
RewrapManyDataKeyOptions options,
CancellationToken cancellationToken = default
)
Public Function RewrapManyDataKey (
filter As FilterDefinition(Of BsonDocument),
options As RewrapManyDataKeyOptions,
Optional cancellationToken As CancellationToken = Nothing
) As RewrapManyDataKeyResult
member RewrapManyDataKey :
filter : FilterDefinition<BsonDocument> *
options : RewrapManyDataKeyOptions *
?cancellationToken : CancellationToken
(* Defaults:
let _cancellationToken = defaultArg cancellationToken new CancellationToken()
*)
-> RewrapManyDataKeyResult
Parameters
- filter
- Type: MongoDB.DriverFilterDefinitionBsonDocument
The filter. - options
- Type: MongoDB.Driver.EncryptionRewrapManyDataKeyOptions
The options. - cancellationToken (Optional)
- Type: System.ThreadingCancellationToken
The cancellation token.
Return Value
Type:
RewrapManyDataKeyResultThe result.
See Also