IBinaryCommandFieldEncryptorEncryptFieldsAsync Method |
Encrypts the fields asynchronously.
Namespace:
MongoDB.Driver.Core.WireProtocol
Assembly:
MongoDB.Driver.Core (in MongoDB.Driver.Core.dll) Version: 2.22.0+75246110ed1247226fcc7f8eb2c54ffab745693e
Syntax Task<byte[]> EncryptFieldsAsync(
string databaseName,
byte[] unencryptedCommandBytes,
CancellationToken cancellationToken
)
Function EncryptFieldsAsync (
databaseName As String,
unencryptedCommandBytes As Byte(),
cancellationToken As CancellationToken
) As Task(Of Byte())
abstract EncryptFieldsAsync :
databaseName : string *
unencryptedCommandBytes : byte[] *
cancellationToken : CancellationToken -> Task<byte[]>
Parameters
- databaseName
- Type: SystemString
The database name. - unencryptedCommandBytes
- Type: SystemByte
The unencrypted command bytes. - cancellationToken
- Type: System.ThreadingCancellationToken
The cancellation token.
Return Value
Type:
TaskByteAn encrypted document.
See Also