Sigh, forgot to commit this file.
[mono.git] / mcs / class / corlib / System.Reflection / MonoEvent.cs
1 //
2 // System.Reflection/MonoEvent.cs
3 //
4 // Author:
5 //   Paolo Molaro (lupus@ximian.com)
6 //
7 // (C) 2001 Ximian, Inc.  http://www.ximian.com
8 //
9
10 using System;
11 using System.Reflection;
12
13 namespace System.Reflection {
14         public sealed class MonoEvent: EventInfo {
15
16                 public override EventAttributes Attributes {
17                         get { return (EventAttributes)0;}
18                 }
19
20                 public override MethodInfo GetAddMethod(bool nonPublic) {
21                         return null;
22                 }
23                 public override MethodInfo GetRaiseMethod( bool nonPublic) {
24                         return null;
25                 }
26                 public override MethodInfo GetRemoveMethod( bool nonPublic) {
27                         return null;
28                 }
29
30                 /*public override bool IsDefined (Type attributeType, bool inherit) {
31                         return MonoCustomAttrs.IsDefined (this, attributeType, inherit);
32                 }
33
34                 public override object[] GetCustomAttributes( bool inherit) {
35                         return MonoCustomAttrs.GetCustomAttributes (this, inherit);
36                 }
37                 public override object[] GetCustomAttributes( Type attributeType, bool inherit) {
38                         return MonoCustomAttrs.GetCustomAttributes (this, attributeType, inherit);
39                 }*/
40                 public override Type DeclaringType {
41                         get {
42                                 return null;
43                         }
44                 }
45                 public override string Name {
46                         get {
47                                 return null;
48                         }
49                 }
50         }
51 }