次の方法で共有


SimpleDelegatedModuleProvider.SupportsDelegation プロパティ

定義

プロバイダーが委任をサポートしているかどうかを示す値を取得します。

public:
 virtual property bool SupportsDelegation { bool get(); };
public override bool SupportsDelegation { get; }
member this.SupportsDelegation : bool
Public Overrides ReadOnly Property SupportsDelegation As Boolean

プロパティ値

常に true

次の例では、 プロパティの値を SupportsDelegation トレース リスナーに書き込みます。

MySimpDelegateModPrvdr msdmp = new MySimpDelegateModPrvdr();

Trace.WriteLine("SupportsDelegation: " +
    msdmp.SupportsDelegation.ToString()); 

適用対象