다음을 통해 공유


LicenseException 클래스

구성 요소에 라이센스를 부여할 수 없을 때 throw되는 예외를 나타냅니다.

네임스페이스: System.ComponentModel
어셈블리: System(system.dll)

구문

‘선언
<SerializableAttribute> _
Public Class LicenseException
    Inherits SystemException
‘사용 방법
Dim instance As LicenseException
[SerializableAttribute] 
public class LicenseException : SystemException
[SerializableAttribute] 
public ref class LicenseException : public SystemException
/** @attribute SerializableAttribute() */ 
public class LicenseException extends SystemException
SerializableAttribute 
public class LicenseException extends SystemException

설명

구성 요소에 유효한 라이센스를 부여할 수 없으면 LicenseManager.Validate 메서드가 LicenseException을 throw합니다. 이 예외는 구성 요소에 라이센스를 부여할 수 없거나, 라이센스를 부여할 수는 있지만 유효한 라이센스를 부여할 수 없을 때 발생합니다.

라이센스에 대한 자세한 내용은 방법: 구성 요소 및 컨트롤 라이센스를 참조하십시오.

참고

이 클래스에 적용되는 HostProtectionAttribute 특성의 Resources 속성 값은 SharedState입니다. HostProtectionAttribute는 대개 아이콘을 두 번 클릭하거나, 명령을 입력하거나, 브라우저에서 URL을 입력하여 시작되는 데스크톱 응용 프로그램에 영향을 미치지 않습니다. 자세한 내용은 HostProtectionAttribute 클래스나 SQL Server 프로그래밍 및 호스트 보호 특성을 참조하십시오.

예제

다음 코드 예제에서는 LicenseException을 catch하고 해당 내용을 해석하는 방법을 보여 줍니다. 샘플에서 응용 프로그램은 라이센스가 없는 System.Windows.Forms.Form에 대한 Validate 메서드를 호출합니다. 예외를 catch하면 샘플에서 각 오류 메시지, 라이센스가 부여되지 않은 구성 요소의 형식, 스택 추적 및 예외의 근원을 페치합니다.

이 예제를 실행하려면 먼저 System.Windows.Forms.FormLicenseProviderAttribute 특성으로 표시하여 LicenseProvider를 지정해야 합니다. 이를 수행하는 방법에 대한 자세한 내용은 LicenseManager 클래스를 참조하십시오.

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
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
{
   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(Form1.class.ToType(), this);
}
catch (LicenseException licE) {
    Console.WriteLine(licE.get_Message());
    Console.WriteLine(licE.get_LicensedType());
    Console.WriteLine(licE.get_StackTrace());
    Console.WriteLine(licE.get_Source());
}

상속 계층 구조

System.Object
   System.Exception
     System.SystemException
      System.ComponentModel.LicenseException

스레드로부터의 안전성

이 형식의 모든 public static(Visual Basic의 경우 Shared) 멤버는 스레드로부터 안전합니다. 인터페이스 멤버는 스레드로부터 안전하지 않습니다.

플랫폼

Windows 98, Windows 2000 SP4, Windows Millennium Edition, Windows Server 2003, Windows XP Media Center Edition, Windows XP Professional x64 Edition, Windows XP SP2, Windows XP Starter Edition

.NET Framework에서 모든 플래폼의 모든 버전을 지원하지는 않습니다. 지원되는 버전의 목록은 시스템 요구 사항을 참조하십시오.

버전 정보

.NET Framework

2.0, 1.1, 1.0에서 지원

참고 항목

참조

LicenseException 멤버
System.ComponentModel 네임스페이스
License 클래스
LicenseContext 클래스
LicenseManager
LicenseProvider
LicenseProviderAttribute
LicFileLicenseProvider
LicenseUsageMode