2008-05-28 Marek Habersack <mhabersack@novell.com>
[mono.git] / mcs / class / System.Web / System.Web.UI / EventEntry.jvm.cs
1 #if NET_2_0\r
2 namespace System.Web.UI\r
3 {\r
4         public class EventEntry\r
5         {\r
6                 public EventEntry () { throw new NotImplementedException (); }\r
7                 public string HandlerMethodName {\r
8                         get { throw new NotImplementedException (); }\r
9                         set { throw new NotImplementedException (); }\r
10                 }\r
11                 public Type HandlerType {\r
12                         get { throw new NotImplementedException (); }\r
13                         set { throw new NotImplementedException (); }\r
14                 }\r
15                 public string Name {\r
16                         get { throw new NotImplementedException (); }\r
17                         set { throw new NotImplementedException (); }\r
18                 }\r
19         }\r
20 }\r
21 #endif