ModuleProvider.SupportsDelegation Property
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
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;
}
}