ClientEncryptionCreateDataKeyAsync Method |
An alias function equivalent to createKey.
Namespace:
MongoDB.Driver.Encryption
Assembly:
MongoDB.Driver (in MongoDB.Driver.dll) Version: 2.19.1+3a2a09dd959482f665ffbb5df2557ec541597af4
Syntax public Task<Guid> CreateDataKeyAsync(
string kmsProvider,
DataKeyOptions dataKeyOptions,
CancellationToken cancellationToken = default
)
Public Function CreateDataKeyAsync (
kmsProvider As String,
dataKeyOptions As DataKeyOptions,
Optional cancellationToken As CancellationToken = Nothing
) As Task(Of Guid)
member CreateDataKeyAsync :
kmsProvider : string *
dataKeyOptions : DataKeyOptions *
?cancellationToken : CancellationToken
(* Defaults:
let _cancellationToken = defaultArg cancellationToken new CancellationToken()
*)
-> Task<Guid>
Parameters
- kmsProvider
- Type: SystemString
The kms provider. - dataKeyOptions
- Type: MongoDB.Driver.EncryptionDataKeyOptions
The data key options. - cancellationToken (Optional)
- Type: System.ThreadingCancellationToken
The cancellation token.
Return Value
Type:
TaskGuidA data key.
See Also