ClientEncryptionRewrapManyDataKeyAsync 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
Syntaxpublic Task<RewrapManyDataKeyResult> RewrapManyDataKeyAsync(
	FilterDefinition<BsonDocument> filter,
	RewrapManyDataKeyOptions options,
	CancellationToken cancellationToken = default
)
Public Function RewrapManyDataKeyAsync ( 
	filter As FilterDefinition(Of BsonDocument),
	options As RewrapManyDataKeyOptions,
	Optional cancellationToken As CancellationToken = Nothing
) As Task(Of RewrapManyDataKeyResult)
member RewrapManyDataKeyAsync : 
        filter : FilterDefinition<BsonDocument> * 
        options : RewrapManyDataKeyOptions * 
        ?cancellationToken : CancellationToken 
(* Defaults:
        let _cancellationToken = defaultArg cancellationToken new CancellationToken()
*)
-> Task<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: 
TaskRewrapManyDataKeyResultThe result.
See Also