ModuleProvider.SupportsDelegation Property

Definition

Gets a value indicating whether the provider supports delegation.

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

Property Value

true if the module provider supports delegation; otherwise, false. The default is false.

Examples

The following example shows how to override the SupportsDelegation property in a derived class to indicate that the provider supports delegation.

public override bool SupportsDelegation {
    get {
        return true;
    }
}

Applies to