LicenseManager.Validate 方法

定义

确定是否可以授予许可证。

重载

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)

参数

type
Type

一个 Type,表示请求许可证的对象的类型。

例外

不能授予 License

注解

当无法授予有效License时,此方法将LicenseException引发 。 方法 IsValid 不会引发异常。

另请参阅

适用于

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

参数

type
Type

一个 Type,表示请求许可证的对象的类型。

instance
Object

指定类型的,或从指定类型派生的类型的 Object

返回

有效的 License

例外

该类型已被授权,但是不能授予 License

注解

当无法授予有效License时,此方法将LicenseException引发 。 方法 IsValid 不会引发异常。

请求 的所有 License 对象都必须在释放或完成对象时通过调用 Dispose 方法来释放许可证。

另请参阅

适用于