LicenseManager.Validate 方法
定义
重要
一些信息与预发行产品相关,相应产品在发行之前可能会进行重大修改。 对于此处提供的信息,Microsoft 不作任何明示或暗示的担保。
确定是否可以授予许可证。
重载
Validate(Type) |
确定是否可以为指定类型授予许可证。 |
Validate(Type, Object) |
确定是否可以为指定类型的实例授予许可证。 |
Validate(Type)
- Source:
- LicenseManager.cs
- Source:
- LicenseManager.cs
- Source:
- LicenseManager.cs
确定是否可以为指定类型授予许可证。
public:
static void Validate(Type ^ type);
public static void Validate (Type type);
static member Validate : Type -> unit
Public Shared Sub Validate (type As Type)
参数
例外
不能授予 License。
注解
当无法授予有效License时,此方法将LicenseException引发 。 方法 IsValid 不会引发异常。
另请参阅
- License
- LicenseContext
- LicenseException
- LicenseProvider
- LicenseProviderAttribute
- LicFileLicenseProvider
- LicenseUsageMode
适用于
Validate(Type, Object)
- Source:
- LicenseManager.cs
- Source:
- LicenseManager.cs
- Source:
- LicenseManager.cs
确定是否可以为指定类型的实例授予许可证。
public:
static System::ComponentModel::License ^ Validate(Type ^ type, System::Object ^ instance);
public static System.ComponentModel.License Validate (Type type, object instance);
public static System.ComponentModel.License? Validate (Type type, object? instance);
static member Validate : Type * obj -> System.ComponentModel.License
Public Shared Function Validate (type As Type, instance As Object) As License
参数
返回
有效的 License。
例外
该类型已被授权,但是不能授予 License。
注解
当无法授予有效License时,此方法将LicenseException引发 。 方法 IsValid 不会引发异常。
请求 的所有 License 对象都必须在释放或完成对象时通过调用 Dispose 方法来释放许可证。
另请参阅
- License
- LicenseContext
- LicenseException
- LicenseProvider
- LicenseProviderAttribute
- LicFileLicenseProvider
- LicenseUsageMode