ToBase64Transform.CanTransformMultipleBlocks Property

Definition

Gets a value that indicates whether multiple blocks can be transformed.

public:
 property bool CanTransformMultipleBlocks { bool get(); };
public bool CanTransformMultipleBlocks { get; }
member this.CanTransformMultipleBlocks : bool
Public ReadOnly Property CanTransformMultipleBlocks As Boolean

Property Value

true if multiple blocks can be transformed; otherwise, false.

Implements

Examples

The following code example demonstrates how to call the CanTransformMultipleBlocks method to verify that multiple blocks can be transformed. This code example is part of a larger example provided for the ToBase64Transform class.

if (  !base64Transform->CanTransformMultipleBlocks )
if (!base64Transform.CanTransformMultipleBlocks)
If (Not base64Transform.CanTransformMultipleBlocks) Then

Applies to

See also