using System; namespace System.ComponentModel { /// Provides the abstract base class for implementing a license provider. // Token: 0x020000A1 RID: 161 public abstract class LicenseProvider { /// When overridden in a derived class, gets a license for an instance or type of component, when given a context and whether the denial of a license throws an exception. /// A valid . /// A that specifies where you can use the licensed object. /// A that represents the component requesting the license. /// An object that is requesting the license. /// true if a should be thrown when the component cannot be granted a license; otherwise, false. // Token: 0x06000548 RID: 1352 public abstract License GetLicense(LicenseContext context, Type type, object instance, bool allowExceptions); } }