
- Forum
- Programming Talk
- Microsoft .NET
- Want to know the derived Class
Want to know the derived Class
This is a discussion on Want to know the derived Class within the Microsoft .NET forums, part of the Programming Talk category; I have very little idea on Licensing and validation logic and I am pretty clear that the Licensing and validation ...
-
Want to know the derived Class
I have very little idea on Licensing and validation logic and I am pretty clear that the Licensing and validation logic is performed by a license provider class. But I want to know from which class is this license provider class derived.
-
LicenseProvider class provides an abstract base class for implementing a license provider. It derives from System.Object
and the inheritance hierarchy is as follows
When you inherit from LicenseProvider, you must override the GetLicense method.Code:System.Object System.ComponentModel.LicenseProvider System.ComponentModel.LicFileLicenseProvider
HTH!!!

Reply With Quote





