ToBase64Transform::CanReuseTransform Property

 

Gets a value indicating whether the current transform can be reused.

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

public:
property bool CanReuseTransform {
	virtual bool get();
}

Property Value

Type: System::Boolean

Always true.

The following code example demonstrates how to call the CanReuseTransform property to determine if the current transform can be reused. This code example is part of a larger example provided for the ToBase64Transform class.

if (  !base64Transform->CanReuseTransform )

.NET Framework
Available since 1.1
Return to top
Show: