LicenseProvider.cs 413 B

123456789101112131415161718192021222324
  1. //
  2. // System.ComponentModel.LicenseProvider.cs
  3. //
  4. // Authors:
  5. // Martin Willemoes Hansen ([email protected])
  6. //
  7. // (C) 2003 Martin Willemoes Hansen
  8. //
  9. namespace System.ComponentModel
  10. {
  11. public abstract class LicenseProvider
  12. {
  13. protected LicenseProvider()
  14. {
  15. }
  16. public abstract License GetLicense (LicenseContext context,
  17. Type type,
  18. object instance,
  19. bool allowExceptions);
  20. }
  21. }