LicenseException 类

定义

表示当组件不能被授予许可证时引发的异常。

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
属性

示例

下面的代码示例演示如何捕获 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)
已过时.

使用给定的 LicenseExceptionSerializationInfo 初始化 StreamingContext 类的新实例。

LicenseException(Type)

为拒绝向其授予许可证的组件的类型初始化 LicenseException 类的新实例。

LicenseException(Type, Object)

为拒绝向其授予许可证的组件的类型和实例初始化 LicenseException 类的新实例。

LicenseException(Type, Object, String)

为拒绝向其授予许可证的组件的类型和实例以及要显示的消息初始化 LicenseException 类的新实例。

LicenseException(Type, Object, String, Exception)

为拒绝向其授予许可证的组件的类型和实例以及要显示的消息和最初引发的异常初始化 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)

适用于

另请参阅