Freigeben über


LicFileLicenseProvider-Klasse

Stellt eine Implementierung eines LicenseProvider bereit. Die Funktionsweise des Lizenzgebers weist große Ähnlichkeit mit der des Standardlizenzierungsmoduls von Microsoft .NET Framework auf.

Namespace: System.ComponentModel
Assembly: System (in system.dll)

Syntax

'Declaration
Public Class LicFileLicenseProvider
    Inherits LicenseProvider
'Usage
Dim instance As LicFileLicenseProvider
public class LicFileLicenseProvider : LicenseProvider
public ref class LicFileLicenseProvider : public LicenseProvider
public class LicFileLicenseProvider extends LicenseProvider
public class LicFileLicenseProvider extends LicenseProvider

Hinweise

LicFileLicenseProvider stellt die GetLicense-Methode und die IsKeyValid-Methode zur Verfügung. Die IsKeyValid-Methode bestimmt, ob der von der GetLicense-Methode abgerufene LicenseKey gültig ist. Wenn Sie diese Klasse vererben, können Sie die IsKeyValid-Methode überschreiben, um eine eigene Validierungslogik bereitzustellen.

Diese Klasse stellt ähnliche Lizenzierungsfunktionen wie die COM-Lizenzierung bereit und verwendet Textlizenzdateien.

Weitere Informationen über die Lizenzierung finden Sie unter Gewusst wie: Lizenzieren von Komponenten und Steuerelementen.

Beispiel

Im folgenden Beispiel wird mithilfe der Validate-Methode ein lizenziertes Steuerelement erstellt. Dabei wird LicFileLicenseProvider für den Lizenz-Manager verwendet.

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;
            }
        }
    } 
} 

Vererbungshierarchie

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

Threadsicherheit

Alle öffentlichen statischen (Shared in Visual Basic) Member dieses Typs sind threadsicher. Bei Instanzmembern ist die Threadsicherheit nicht gewährleistet.

Plattformen

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 unterstützt nicht alle Versionen sämtlicher Plattformen. Eine Liste der unterstützten Versionen finden Sie unter Systemanforderungen.

Versionsinformationen

.NET Framework

Unterstützt in: 2.0, 1.1, 1.0

Siehe auch

Referenz

LicFileLicenseProvider-Member
System.ComponentModel-Namespace
License-Klasse
LicenseContext-Klasse
LicenseException-Klasse
LicenseManager-Klasse
LicenseProvider-Klasse
LicenseProviderAttribute-Klasse
LicFileLicenseProvider-Klasse
LicenseUsageMode-Enumeration