LicenseException 类
定义
重要
一些信息与预发行产品相关,相应产品在发行之前可能会进行重大修改。 对于此处提供的信息,Microsoft 不作任何明示或暗示的担保。
表示当组件无法授予许可证时引发的异常。
public ref class LicenseException : SystemException
public class LicenseException : SystemException
[System.Serializable]
public class LicenseException : SystemException
type LicenseException = class
inherit SystemException
[<System.Serializable>]
type LicenseException = class
inherit SystemException
Public Class LicenseException
Inherits SystemException
- 继承
- 属性
示例
下面的代码示例演示如何捕获 LicenseException 和解释其内容。 在示例中,应用程序为未获得许可的 System.Windows.Forms.Form 调用 Validate 方法。 捕获异常后,该示例会提取相应的错误消息、未授予许可证的组件类型、堆栈跟踪和异常的来源。
此示例要求使用 LicenseProviderAttribute 属性标记 System.Windows.Forms.Form来指定 LicenseProvider。 有关如何执行此操作的详细信息,请参阅该 LicenseManager 类。
try
{
License^ licTest = nullptr;
licTest = LicenseManager::Validate( Form1::typeid, this );
}
catch ( LicenseException^ licE )
{
Console::WriteLine( licE->Message );
Console::WriteLine( licE->LicensedType );
Console::WriteLine( licE->StackTrace );
Console::WriteLine( licE->Source );
}
try
{
License licTest = null;
licTest = LicenseManager.Validate(typeof(Form1), this);
}
catch (LicenseException licE)
{
Console.WriteLine(licE.Message);
Console.WriteLine(licE.LicensedType);
Console.WriteLine(licE.StackTrace);
Console.WriteLine(licE.Source);
}
Try
Dim licTest As License
licTest = LicenseManager.Validate(GetType(Form1), Me)
Catch licE As LicenseException
Console.WriteLine(licE.Message)
Console.WriteLine(licE.LicensedType)
Console.WriteLine(licE.StackTrace)
Console.WriteLine(licE.Source)
End Try
注解
当组件无法获取有效许可证时,该方法 LicenseManager.Validate 将 LicenseException 引发。 当组件未获得许可或获得许可但无法授予有效许可证时,将发生这种情况。
构造函数
| 名称 | 说明 |
|---|---|
| LicenseException(SerializationInfo, StreamingContext) |
已过时.
使用给定SerializationInfo和 StreamingContext. 初始化类的新实例LicenseException。 |
| LicenseException(Type, Object, String, Exception) |
为拒绝许可证的类型和组件的实例以及要显示的消息以及引发的原始异常初始化类的新实例 LicenseException 。 |
| LicenseException(Type, Object, String) |
为拒绝许可证的组件的类型和组件实例以及要显示的消息初始化类的新实例 LicenseException 。 |
| LicenseException(Type, Object) |
为拒绝许可证的组件的类型和组件的实例初始化类的新实例 LicenseException 。 |
| LicenseException(Type) |
为拒绝许可证的组件类型初始化类的新实例 LicenseException 。 |
属性
| 名称 | 说明 |
|---|---|
| Data |
获取键/值对的集合,这些键/值对提供有关异常的其他用户定义的信息。 (继承自 Exception) |
| HelpLink |
获取或设置与此异常关联的帮助文件的链接。 (继承自 Exception) |
| HResult |
获取或设置 HRESULT,它是分配给特定异常的编码数值。 (继承自 Exception) |
| InnerException |
Exception获取导致当前异常的实例。 (继承自 Exception) |
| LicensedType |
获取未授予许可证的组件的类型。 |
| Message |
获取描述当前异常的消息。 (继承自 Exception) |
| Source |
获取或设置导致错误的应用程序或对象的名称。 (继承自 Exception) |
| StackTrace |
获取调用堆栈上即时帧的字符串表示形式。 (继承自 Exception) |
| TargetSite |
获取引发当前异常的方法。 (继承自 Exception) |
方法
| 名称 | 说明 |
|---|---|
| Equals(Object) |
确定指定的对象是否等于当前对象。 (继承自 Object) |
| GetBaseException() |
在派生类中重写时,返回 Exception 一个或多个后续异常的根本原因。 (继承自 Exception) |
| GetHashCode() |
用作默认哈希函数。 (继承自 Object) |
| GetObjectData(SerializationInfo, StreamingContext) |
已过时.
设置 SerializationInfo 有关异常的信息。 |
| GetObjectData(SerializationInfo, StreamingContext) |
已过时.
在派生类中重写时,设置 SerializationInfo 有关异常的信息。 (继承自 Exception) |
| GetType() |
获取当前实例的运行时类型。 (继承自 Exception) |
| MemberwiseClone() |
创建当前 Object的浅表副本。 (继承自 Object) |
| ToString() |
创建并返回当前异常的字符串表示形式。 (继承自 Exception) |
活动
| 名称 | 说明 |
|---|---|
| SerializeObjectState |
已过时.
序列化异常以创建包含有关异常的序列化数据的异常状态对象时发生。 (继承自 Exception) |