Merge pull request #2417 from razzfazz/guard_substr
[mono.git] / mcs / class / System.Web / System.Web.Util / WorkItem.cs
index 92361e4bfb85aff6f61617a1e0e68d70a9c2ba02..5e03ca366e2eff6bfb8cf38e30633dfa71764cfa 100644 (file)
@@ -4,7 +4,7 @@
 // Author:
 //   Andreas Nahr (ClassDevelopment@A-SoftTech.com)
 //
-
+// Copyright (C) 2005 Novell, Inc (http://www.novell.com)
 //
 // Permission is hereby granted, free of charge, to any person obtaining
 // a copy of this software and associated documentation files (the
 // WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
 //
 
-using System;
+using System.Security.Permissions;
 
 namespace System.Web.Util
 {
+       // CAS
+       [AspNetHostingPermission (SecurityAction.LinkDemand, Level = AspNetHostingPermissionLevel.Minimal)]
+       [AspNetHostingPermission (SecurityAction.InheritanceDemand, Level = AspNetHostingPermissionLevel.Minimal)]
        public class WorkItem
        {
                public WorkItem ()
                {
                }
 
+               [SecurityPermission (SecurityAction.Demand, UnmanagedCode = true)]
+               [MonoTODO ("Not implemented, not currently supported by Mono")]
                public static void Post (WorkItemCallback callback)
                {
+                       // note: this is the documented exception for (Windows) OS prior to NT
+                       // so in this case we won't throw a NotImplementedException
                        throw new PlatformNotSupportedException ("Not supported on mono");
                }
        }