LicFileLicenseProvider.cs 779 B

1234567891011121314151617181920212223242526272829303132333435363738394041424344
  1. //
  2. // System.ComponentModel.LicFileLicenseProvider
  3. //
  4. // Authors:
  5. // Martin Willemoes Hansen ([email protected])
  6. //
  7. // (C) 2003 Martin Willemoes Hansen
  8. //
  9. namespace System.ComponentModel
  10. {
  11. public class LicFileLicenseProvider : LicenseProvider
  12. {
  13. [MonoTODO]
  14. public LicFileLicenseProvider()
  15. {
  16. }
  17. public override License GetLicense (LicenseContext context,
  18. Type type,
  19. object instance,
  20. bool allowExceptions)
  21. {
  22. throw new NotImplementedException();
  23. }
  24. [MonoTODO]
  25. protected virtual string GetKey (Type type)
  26. {
  27. throw new NotImplementedException();
  28. }
  29. [MonoTODO]
  30. protected virtual bool IsKeyValid (string key, Type type)
  31. {
  32. throw new NotImplementedException();
  33. }
  34. [MonoTODO]
  35. ~LicFileLicenseProvider()
  36. {
  37. }
  38. }
  39. }