DecryptBlock Method
Decrypts a block and returns the decrypted data.
Syntax
[VB.NET] Public Function DecryptBlock(ByVal InputBuffer As String, ByVal LastBlock As Boolean) As String
[C#] public byte[] DecryptBlock(byte[] inputBuffer, bool lastBlock);
Remarks
This method will decrypt the specified block and return the decrypted data.
InputBuffer specifies the encrypted block to decrypt.
LastBlock indicates whether the block is the last block.
NOTE: This method has a corresponding asynchronous version (DecryptBlockAsync) for use in the Xamarin environment.