Exforsys
+ Reply to Thread
Results 1 to 2 of 2

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 ...

  1. #1
    Ralph is offline Senior Member Array
    Join Date
    Apr 2006
    Answers
    114

    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.


  2. #2
    techvinny is offline Moderator Array
    Join Date
    Dec 2010
    Answers
    56
    LicenseProvider class provides an abstract base class for implementing a license provider. It derives from System.Object
    and the inheritance hierarchy is as follows

    Code:
    System.Object
      System.ComponentModel.LicenseProvider
        System.ComponentModel.LicFileLicenseProvider
    When you inherit from LicenseProvider, you must override the GetLicense method.

    HTH!!!


Latest Article

Network Security Risk Assessment and Measurement

Read More...