IBinaryDocumentFieldDecryptorDecryptFields Method |
Decrypts the fields.
Namespace:
MongoDB.Driver.Core.WireProtocol
Assembly:
MongoDB.Driver.Core (in MongoDB.Driver.Core.dll) Version: 2.22.0+75246110ed1247226fcc7f8eb2c54ffab745693e
Syntax byte[] DecryptFields(
byte[] encryptedDocumentBytes,
CancellationToken cancellationToken
)
Function DecryptFields (
encryptedDocumentBytes As Byte(),
cancellationToken As CancellationToken
) As Byte()
abstract DecryptFields :
encryptedDocumentBytes : byte[] *
cancellationToken : CancellationToken -> byte[]
Parameters
- encryptedDocumentBytes
- Type: SystemByte
The encrypted document bytes. - cancellationToken
- Type: System.ThreadingCancellationToken
The cancellation token.
Return Value
Type:
ByteAn unencrypted document.
See Also