PrintingPermission.cs 1002 B

1234567891011121314151617181920212223242526272829303132333435363738394041424344
  1. //
  2. // System.Drawing.PrintingPermission.cs
  3. //
  4. // Author:
  5. // Dennis Hayes ([email protected])
  6. //
  7. // (C) 2002 Ximian, Inc
  8. //
  9. using System;
  10. namespace System.Drawing.Printing
  11. {
  12. /// <summary>
  13. /// Summary description for PrintingPermission.
  14. /// </summary>
  15. ///
  16. [Serializable]
  17. public sealed class PrintingPermission //: CodeAccessPermission, IUnrestrictedPermission
  18. {
  19. // [MonoTODO]
  20. // public PrintingPermission(PermissionState state) {
  21. // throw new NotImplementedException ();
  22. // }
  23. // [MonoTODO]
  24. // public PrintingPermission(PrintingPermissionLevel PrintingLevel) {
  25. // throw new NotImplementedException ();
  26. // }
  27. //[MonoTODO]
  28. // [Serializable]
  29. // public PrintingPermissionlevel Level{
  30. // get{
  31. // throw new NotImplementedException ();
  32. // }
  33. // set{
  34. // throw new NotImplementedException ();
  35. // }
  36. // }
  37. //[MonoTODO]
  38. // [Serializable]
  39. // public override IPermission Copy(){
  40. // throw new NotImplementedException ();
  41. // }
  42. }
  43. }