ToBase64Transform::CanTransformMultipleBlocks Property

 

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

Namespace:   System.Security.Cryptography
Assembly:  mscorlib (in mscorlib.dll)

public:
property bool CanTransformMultipleBlocks {
	virtual bool get() sealed;
}

Property Value

Type: System::Boolean

Always false.

In the current implementation, only one block can be transformed at a time, so this property is always false.

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 )

.NET Framework
Available since 1.1
Return to top
Show: