CryptoAPITransform.CanReuseTransform プロパティ

定義

現在の変換を再利用できるかどうかを示す値を取得します。

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

プロパティ値

常に true

実装

次のコード例では、 プロパティを呼び出 CanReuseTransform して、現在の変換を再利用できるかどうかを判断する方法を示します。 このコード例は、CryptoAPITransform クラスのために提供されている大規模な例の一部です。

if (  !cryptoTransform->CanReuseTransform )
if (!cryptoTransform.CanReuseTransform)
If (Not cryptoTransform.CanReuseTransform) Then

適用対象

こちらもご覧ください