LicenseManager.cs 1.6 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485
  1. //
  2. // System.ComponentModel.LicenseManager
  3. //
  4. // Authors:
  5. // Martin Willemoes Hansen ([email protected])
  6. //
  7. // (C) 2003 Martin Willemoes Hansen
  8. //
  9. namespace System.ComponentModel
  10. {
  11. public sealed class LicenseManager
  12. {
  13. [MonoTODO]
  14. public static LicenseContext CurrentContext {
  15. [MonoTODO]
  16. get { throw new NotImplementedException(); }
  17. [MonoTODO]
  18. set { throw new NotImplementedException(); }
  19. }
  20. public static LicenseUsageMode UsageMode {
  21. [MonoTODO]
  22. get { throw new NotImplementedException(); }
  23. }
  24. [MonoTODO]
  25. public static object CreateWithContext (Type type,
  26. LicenseContext creationContext)
  27. {
  28. throw new NotImplementedException();
  29. }
  30. [MonoTODO]
  31. public static object CreateWithContext (Type type,
  32. LicenseContext creationContext,
  33. object[] args)
  34. {
  35. throw new NotImplementedException();
  36. }
  37. [MonoTODO]
  38. public static bool IsLicensed (Type type)
  39. {
  40. throw new NotImplementedException();
  41. }
  42. [MonoTODO]
  43. public static bool IsValid (Type type)
  44. {
  45. throw new NotImplementedException();
  46. }
  47. [MonoTODO]
  48. public static bool IsValid (Type type, object instance,
  49. out License license)
  50. {
  51. throw new NotImplementedException();
  52. }
  53. [MonoTODO]
  54. public static void LockContext (object contextUser)
  55. {
  56. throw new NotImplementedException();
  57. }
  58. [MonoTODO]
  59. public static void UnlockContext (object contextUser)
  60. {
  61. throw new NotImplementedException();
  62. }
  63. [MonoTODO]
  64. public static void Validate (Type type)
  65. {
  66. throw new NotImplementedException();
  67. }
  68. [MonoTODO]
  69. public static License Validate (Type type, object instance)
  70. {
  71. throw new NotImplementedException();
  72. }
  73. }
  74. }