LicFileLicenseProvider Class
Provides an implementation of a LicenseProvider. The provider works in a similar fashion to the Microsoft .NET Framework standard licensing model.
Assembly: System (in System.dll)
The LicFileLicenseProvider type exposes the following members.
| Name | Description | |
|---|---|---|
![]() | LicFileLicenseProvider | Initializes a new instance of the LicFileLicenseProvider class. |
| Name | Description | |
|---|---|---|
![]() | Equals(Object) | Determines whether the specified Object is equal to the current Object. (Inherited from Object.) |
![]() | Finalize | Allows an object to try to free resources and perform other cleanup operations before it is reclaimed by garbage collection. (Inherited from Object.) |
![]() | GetHashCode | Serves as a hash function for a particular type. (Inherited from Object.) |
![]() | GetKey | Returns a key for the specified type. |
![]() | GetLicense | Returns a license for the instance of the component, if one is available. (Overrides LicenseProvider::GetLicense(LicenseContext, Type, Object, Boolean).) |
![]() | GetType | Gets the Type of the current instance. (Inherited from Object.) |
![]() | IsKeyValid | Determines whether the key that the GetLicense method retrieves is valid for the specified type. |
![]() | MemberwiseClone | Creates a shallow copy of the current Object. (Inherited from Object.) |
![]() | ToString | Returns a string that represents the current object. (Inherited from Object.) |
The LicFileLicenseProvider offers GetLicense and IsKeyValid methods. The IsKeyValid method determines whether the LicenseKey retrieved by the GetLicense method is valid. When you inherit from this class, you can override the IsKeyValid method to provide your own validation logic.
This class exists to provide similar licensing functionality to COM licensing and uses text license files.
For more information on licensing, see How to: License Components and Controls.
Note |
|---|
The HostProtectionAttribute attribute applied to this type or member has the following Resources property value: SharedState. 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 example creates a licensed control using the Validate method. It uses LicFileLicenseProvider for the license manager.
// 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; } } };
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.
