| 1234567891011121314151617181920212223242526272829303132333435363738394041424344 |
- //
- // System.Drawing.PrintingPermission.cs
- //
- // Author:
- // Dennis Hayes ([email protected])
- //
- // (C) 2002 Ximian, Inc
- //
- using System;
- namespace System.Drawing.Printing
- {
- /// <summary>
- /// Summary description for PrintingPermission.
- /// </summary>
- ///
- [Serializable]
- public sealed class PrintingPermission //: CodeAccessPermission, IUnrestrictedPermission
- {
- // [MonoTODO]
- // public PrintingPermission(PermissionState state) {
- // throw new NotImplementedException ();
- // }
- // [MonoTODO]
- // public PrintingPermission(PrintingPermissionLevel PrintingLevel) {
- // throw new NotImplementedException ();
- // }
- //[MonoTODO]
- // [Serializable]
- // public PrintingPermissionlevel Level{
- // get{
- // throw new NotImplementedException ();
- // }
- // set{
- // throw new NotImplementedException ();
- // }
- // }
- //[MonoTODO]
- // [Serializable]
- // public override IPermission Copy(){
- // throw new NotImplementedException ();
- // }
- }
- }
|