This topic has not yet been rated - Rate this topic

LicenseManager Class

Provides properties and methods to add a license to a component and to manage a LicenseProvider. This class cannot be inherited.

System.Object
  System.ComponentModel.LicenseManager

Namespace:  System.ComponentModel
Assembly:  System (in System.dll)
[HostProtectionAttribute(SecurityAction.LinkDemand, ExternalProcessMgmt = true)]
public sealed class LicenseManager

The LicenseManager type exposes the following members.

  Name Description
Public property Static member CurrentContext Gets or sets the current LicenseContext, which specifies when you can use the licensed object.
Public property Static member UsageMode Gets the LicenseUsageMode which specifies when you can use the licensed object for the CurrentContext.
Top
  Name Description
Public method Static member CreateWithContext(Type, LicenseContext) Creates an instance of the specified type, given a context in which you can use the licensed instance.
Public method Static member CreateWithContext(Type, LicenseContext, Object[]) Creates an instance of the specified type with the specified arguments, given a context in which you can use the licensed instance.
Public method Equals(Object) Determines whether the specified Object is equal to the current Object. (Inherited from Object.)
Protected method Finalize Allows an object to try to free resources and perform other cleanup operations before it is reclaimed by garbage collection. (Inherited from Object.)
Public method GetHashCode Serves as a hash function for a particular type. (Inherited from Object.)
Public method GetType Gets the Type of the current instance. (Inherited from Object.)
Public method Static member IsLicensed Returns whether the given type has a valid license.
Public method Static member IsValid(Type) Determines whether a valid license can be granted for the specified type.
Public method Static member IsValid(Type, Object, License) Determines whether a valid license can be granted for the specified instance of the type. This method creates a valid License.
Public method Static member LockContext Prevents changes being made to the current LicenseContext of the given object.
Protected method MemberwiseClone Creates a shallow copy of the current Object. (Inherited from Object.)
Public method ToString Returns a string that represents the current object. (Inherited from Object.)
Public method Static member UnlockContext Allows changes to be made to the current LicenseContext of the given object.
Public method Static member Validate(Type) Determines whether a license can be granted for the specified type.
Public method Static member Validate(Type, Object) Determines whether a license can be granted for the instance of the specified type.
Top

The LicenseManager class provides the following static properties: CurrentContext and UsageMode. The class also provides the following static methods: CreateWithContext, IsValid, and Validate.

When you create a component that you want to license, you must do the following:

  1. Specify the LicenseProvider by marking the component with a LicenseProviderAttribute.

  2. Call Validate or IsValid in the constructor of the component. Validate throws a LicenseException when it tries to create an instance without a valid license. IsValid does not throw an exception.

  3. Call Dispose on any license that is granted when the component is disposed or finalized.

For more information on licensing, see How to: License Components and Controls.

Note Note

The HostProtectionAttribute attribute applied to this type or member has the following Resources property value: ExternalProcessMgmt. The HostProtectionAttribute does not affect desktop applications (which are typically started by double-clicking an icon, typing a command, or entering a URL in a browser). For more information, see the HostProtectionAttribute class or SQL Server Programming and Host Protection Attributes.

The following code example creates a licensed control using the Validate method. It uses a LicenseProvider that is implemented by the LicFileLicenseProvider 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;
         }
      }
   }

}


.NET Framework

Supported in: 4, 3.5, 3.0, 2.0, 1.1, 1.0

.NET Framework Client Profile

Supported in: 4, 3.5 SP1

Windows 7, Windows Vista SP1 or later, Windows XP SP3, Windows XP SP2 x64 Edition, Windows Server 2008 (Server Core not supported), Windows Server 2008 R2 (Server Core supported with SP1 or later), Windows Server 2003 SP2

The .NET Framework does not support all versions of every platform. For a list of the supported versions, see .NET Framework System Requirements.
Any public static (Shared in Visual Basic) members of this type are thread safe. Any instance members are not guaranteed to be thread safe.
Did you find this helpful?
(1500 characters remaining)
Community Content Add
Annotations FAQ
Implemented in LM-X
This class is implemented in LM-X License manager. See http://www.x-formation.com/lm-x_license_manager/index.html
There is also an example how to use it.