using cache to get performance improvement.
[mono.git] / mcs / class / System.Web / System.Web.Util / WorkItem.cs
1 //
2 // System.Web.Util.WorkItem.cs
3 //
4 // Author:
5 //   Andreas Nahr (ClassDevelopment@A-SoftTech.com)
6 //
7
8 using System;
9
10 namespace System.Web.Util
11 {
12         public class WorkItem
13         {
14                 public WorkItem ()
15                 {
16                 }
17
18                 public static void Post (WorkItemCallback callback)
19                 {
20                         throw new PlatformNotSupportedException ("Not supported on mono");
21                 }
22         }
23 }