// // System.Drawing.PrintingPermissionAttribute.cs // // Author: // Dennis Hayes (dennish@Raytek.com) // // (C) 2002 Ximian, Inc // using System; namespace System.Drawing.Printing { /// /// Summary description for PrintingPermissionAttribute. /// /// //[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 (); // } } }