| 123456789101112131415161718192021222324252627282930313233343536373839404142 |
- //
- // System.Drawing.PrintingPermissionAttribute.cs
- //
- // Author:
- // Dennis Hayes ([email protected])
- //
- // (C) 2002 Ximian, Inc
- //
- using System;
- namespace System.Drawing.Printing
- {
- /// <summary>
- /// Summary description for PrintingPermissionAttribute.
- /// </summary>
- ///
- //[AttributeUsage(AttributeTargets.All)]
- public sealed class PrintingPermissionAttribute //: CodeAccessSecurityAttribute
- {
- // [MonoTODO]
- // [AttributeUsage(AttributeTargets.All)]
- // public PrintingPermissionAttribute(SecurityAction action)
- // {
- // throw new NotImplementedException ();
- // }
- // [MonoTODO]
- // [AttributeUsage(AttributeTargets.All)]
- // public PrintingPermissionLevel Level {
- // get{
- // throw new NotImplementedException ();
- // }
- // set{
- // throw new NotImplementedException ();
- // }
- // }
- // [MonoTODO]
- // [AttributeUsage(AttributeTargets.All)]
- // public override IPermission CreatePermission(){
- // throw new NotImplementedException ();
- // }
- }
- }
|