LicenseProvider.cs 468 B

1234567891011121314151617181920212223242526272829
  1. //
  2. // System.ComponentModel.LicenseProvider
  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. [MonoTODO]
  14. protected LicenseProvider()
  15. {
  16. }
  17. public abstract License GetLicense (LicenseContext context,
  18. Type type,
  19. object instance,
  20. bool allowExceptions);
  21. [MonoTODO]
  22. ~LicenseProvider()
  23. {
  24. }
  25. }
  26. }