ICryptoTransform.TransformFinalBlock Method
Microsoft Silverlight will reach end of support after October 2021. Learn more.
Transforms the specified region of the specified byte array.
Namespace: System.Security.Cryptography
Assembly: mscorlib (in mscorlib.dll)
Syntax
'Declaration
Function TransformFinalBlock ( _
inputBuffer As Byte(), _
inputOffset As Integer, _
inputCount As Integer _
) As Byte()
byte[] TransformFinalBlock(
byte[] inputBuffer,
int inputOffset,
int inputCount
)
Parameters
- inputBuffer
Type: array<System.Byte[]
The input for which to compute the transform.
- inputOffset
Type: System.Int32
The offset into the byte array from which to begin using data.
- inputCount
Type: System.Int32
The number of bytes in the byte array to use as data.
Return Value
Type: array<System.Byte[]
The computed transform.
Version Information
Silverlight
Supported in: 5, 4, 3
Silverlight for Windows Phone
Supported in: Windows Phone OS 7.1, Windows Phone OS 7.0
XNA Framework
Supported in: Windows Phone OS 7.0
Platforms
For a list of the operating systems and browsers that are supported by Silverlight, see Supported Operating Systems and Browsers.
See Also