SimpleDelegatedModuleProvider.SupportsDelegation Property

Definition

Gets a value indicating whether the provider supports delegation.

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

Property Value

true in all cases.

Examples

The following example writes the value of the SupportsDelegation property to the trace listener.

MySimpDelegateModPrvdr msdmp = new MySimpDelegateModPrvdr();

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

Applies to