다음을 통해 공유


LicFileLicenseProvider 클래스

LicenseProvider를 구현합니다. 이 공급자는 Microsoft .NET Framework의 표준 라이센스 모듈과 유사한 방식으로 작동합니다.

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

구문

‘선언
Public Class LicFileLicenseProvider
    Inherits LicenseProvider
‘사용 방법
Dim instance As LicFileLicenseProvider
public class LicFileLicenseProvider : LicenseProvider
public ref class LicFileLicenseProvider : public LicenseProvider
public class LicFileLicenseProvider extends LicenseProvider
public class LicFileLicenseProvider extends LicenseProvider

설명

LicFileLicenseProvider에서는 GetLicenseIsKeyValid 메서드를 사용할 수 있습니다. IsKeyValid 메서드는 GetLicense 메서드로 검색된 LicenseKey가 유효한지 여부를 확인합니다. 이 클래스에서 상속할 때는 IsKeyValid 메서드를 재정의하여 사용자 고유의 유효성 검사 논리를 제공할 수 있습니다.

이 클래스는 COM 라이센스와 유사한 라이센스 기능을 제공하기 위한 것이며, 텍스트 라이센스 파일을 사용합니다.

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

예제

다음 예제에서는 Validate 메서드를 사용하여 라이센스가 있는 컨트롤을 만듭니다. 이 예제에서는 라이센스 관리자로 LicFileLicenseProvider를 사용합니다.

Imports System
Imports System.ComponentModel
Imports System.Windows.Forms

' Adds the LicenseProviderAttribute to the control.
<LicenseProvider(GetType(LicFileLicenseProvider))> _
Public Class MyControl
    Inherits Control
    
    ' Creates a new, null license.
    Private license As License = Nothing    
    
    Public Sub New()        
    
        ' Adds Validate to the control's constructor.
        license = LicenseManager.Validate(GetType(MyControl), Me)

        ' Insert code to perform other instance creation tasks here.
        
    End Sub
    
    Protected Overrides Sub Dispose(ByVal disposing As Boolean)

        If disposing Then
            If Not (license Is Nothing) Then
                license.Dispose()
                license = Nothing
            End If
        End If

    End Sub    
    
End Class
using System;
using System.ComponentModel;
using System.Windows.Forms;


// Adds the LicenseProviderAttribute to the control.
[LicenseProvider(typeof(LicFileLicenseProvider))]
public class MyControl : Control 
{
 
   // Creates a new, null license.
   private License license = null;
 
   public MyControl () 
   {
 
      // Adds Validate to the control's constructor.
      license = LicenseManager.Validate(typeof(MyControl), this);
 
      // Insert code to perform other instance creation tasks here.
   }
 
   protected override void Dispose(bool disposing) 
   {
      if(disposing)
      {
         if (license != null) 
         {
            license.Dispose();
            license = null;
         }
      }
   }
 
}
// Adds the LicenseProviderAttribute to the control.

[LicenseProvider(LicFileLicenseProvider::typeid)]
public ref class MyControl: public Control
{
   // Creates a new, null license.
private:
   License^ license;

public:
   MyControl()
   {
      
      // Adds Validate to the control's constructor.
      license = LicenseManager::Validate( MyControl::typeid, this );

      // Insert code to perform other instance creation tasks here.
   }

public:
   ~MyControl()
   {
      if ( license != nullptr )
      {
         delete license;
         license = nullptr;
      }
   }
};
import System.*;
import System.ComponentModel.*;
import System.Windows.Forms.*;


// Adds the LicenseProviderAttribute to the control.
/** @attribute LicenseProvider(LicFileLicenseProvider.class)
 */
public class MyControl extends Control
{
    // Creates a new, null license.
    private License license = null;

    public MyControl()
    {
        // Adds Validate to the control's constructor.
        license = LicenseManager.Validate(MyControl.class.ToType(), this);

        // Insert code to perform other instance creation tasks here.
    } 
    
    protected void Dispose(boolean disposing)
    {
        if (disposing) {
            if (license != null) {
                license.Dispose();
                license = null;
            }
        }
    } 
} 

상속 계층 구조

System.Object
   System.ComponentModel.LicenseProvider
    System.ComponentModel.LicFileLicenseProvider

스레드로부터의 안전성

이 형식의 모든 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에서 지원

참고 항목

참조

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