System.ComponentModel.LicenseProvider
namespace System.ComponentModel
{
public abstract class LicenseProvider
{
protected LicenseProvider();
public abstract License GetLicense(LicenseContext context, Type type, object instance, bool allowExceptions);
}
}