mscorlib(4.0.0.0) API with additions
License.cs
2 
3 namespace System.ComponentModel
4 {
6  [HostProtection(SecurityAction.LinkDemand, SharedState = true)]
7  public abstract class License : IDisposable
8  {
11  public abstract string LicenseKey
12  {
13  get;
14  }
15 
17  public abstract void Dispose();
18  }
19 }
Provides a mechanism for releasing unmanaged resources.To browse the .NET Framework source code for t...
Definition: IDisposable.cs:8
Definition: __Canon.cs:3
abstract string LicenseKey
When overridden in a derived class, gets the license key granted to this component.
Definition: License.cs:12
SecurityAction
Specifies the security actions that can be performed using declarative security.
Provides the abstract base class for all licenses. A license is granted to a specific instance of a c...
Definition: License.cs:7
abstract void Dispose()
When overridden in a derived class, disposes of the resources used by the license.