SimpleDelegatedModuleProvider.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 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());