C# Class PRI.ProductivityExtensions.ToBase64TransformExtensions.ToBase64Transformable

Class that contains extension methods that extend ToBase64Transform
ファイルを表示 Open project: peteraritchie/ProductivityExtensions

Public Methods

Method Description
TransformBlock ( this tobase64transform, Byte inputBuffer, Byte outputBuffer, Int32 outputOffset ) : Int32

Extends TransformBlock so that buffer offset of 0 and call to Array.Length are not needed. tobase64transform.TransformBlock(inputBuffer, outputBuffer, outputOffset);

TransformFinalBlock ( this tobase64transform, Byte inputBuffer ) : Byte[]

Extends TransformFinalBlock so that buffer offset of 0 and call to Array.Length are not needed. tobase64transform.TransformFinalBlock(inputBuffer);

Method Details

TransformBlock() public static method

Extends TransformBlock so that buffer offset of 0 and call to Array.Length are not needed. tobase64transform.TransformBlock(inputBuffer, outputBuffer, outputOffset);
public static TransformBlock ( this tobase64transform, Byte inputBuffer, Byte outputBuffer, Int32 outputOffset ) : Int32
tobase64transform this
inputBuffer Byte
outputBuffer Byte
outputOffset System.Int32
return System.Int32

TransformFinalBlock() public static method

Extends TransformFinalBlock so that buffer offset of 0 and call to Array.Length are not needed. tobase64transform.TransformFinalBlock(inputBuffer);
public static TransformFinalBlock ( this tobase64transform, Byte inputBuffer ) : Byte[]
tobase64transform this
inputBuffer Byte
return Byte[]