2
0

PrintingPermissionAttribute.cs 1017 B

123456789101112131415161718192021222324252627282930313233343536373839404142
  1. //
  2. // System.Drawing.PrintingPermissionAttribute.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 PrintingPermissionAttribute.
  14. /// </summary>
  15. ///
  16. //[AttributeUsage(AttributeTargets.All)]
  17. public sealed class PrintingPermissionAttribute //: CodeAccessSecurityAttribute
  18. {
  19. // [MonoTODO]
  20. // [AttributeUsage(AttributeTargets.All)]
  21. // public PrintingPermissionAttribute(SecurityAction action)
  22. // {
  23. // throw new NotImplementedException ();
  24. // }
  25. // [MonoTODO]
  26. // [AttributeUsage(AttributeTargets.All)]
  27. // public PrintingPermissionLevel Level {
  28. // get{
  29. // throw new NotImplementedException ();
  30. // }
  31. // set{
  32. // throw new NotImplementedException ();
  33. // }
  34. // }
  35. // [MonoTODO]
  36. // [AttributeUsage(AttributeTargets.All)]
  37. // public override IPermission CreatePermission(){
  38. // throw new NotImplementedException ();
  39. // }
  40. }
  41. }