2004-07-07 Sebastien Pouliot <sebastien@ximian.com>
[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 //
11 // Copyright (C) 2004 Novell, Inc (http://www.novell.com)
12 //
13 // Permission is hereby granted, free of charge, to any person obtaining
14 // a copy of this software and associated documentation files (the
15 // "Software"), to deal in the Software without restriction, including
16 // without limitation the rights to use, copy, modify, merge, publish,
17 // distribute, sublicense, and/or sell copies of the Software, and to
18 // permit persons to whom the Software is furnished to do so, subject to
19 // the following conditions:
20 // 
21 // The above copyright notice and this permission notice shall be
22 // included in all copies or substantial portions of the Software.
23 // 
24 // THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
25 // EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
26 // MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
27 // NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
28 // LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
29 // OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
30 // WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
31 //
32
33 using System;
34 using System.Reflection;
35 using System.Runtime.CompilerServices;
36 using System.Runtime.InteropServices;
37
38 namespace System.Reflection {
39
40         internal struct MonoEventInfo {
41                 public Type declaring_type;
42                 public Type reflected_type;
43                 public String name;
44                 public MethodInfo add_method;
45                 public MethodInfo remove_method;
46                 public MethodInfo raise_method;
47                 public EventAttributes attrs;
48                 
49                 [MethodImplAttribute(MethodImplOptions.InternalCall)]
50                 internal static extern void get_event_info (MonoEvent ev, out MonoEventInfo info);
51         }
52
53         internal sealed class MonoEvent: EventInfo {
54                 IntPtr klass;
55                 IntPtr handle;
56
57                 public override EventAttributes Attributes {
58                         get {
59                                 MonoEventInfo info;
60                                 MonoEventInfo.get_event_info (this, out info);
61                                 
62                                 return info.attrs;
63                         }
64                 }
65
66                 public override MethodInfo GetAddMethod(bool nonPublic) {
67                         MonoEventInfo info;
68                         MonoEventInfo.get_event_info (this, out info);
69                                 
70                         return info.add_method;
71                 }
72
73                 public override MethodInfo GetRaiseMethod( bool nonPublic) {
74                         MonoEventInfo info;
75                         MonoEventInfo.get_event_info (this, out info);
76                                 
77                         return info.raise_method;
78                 }
79
80                 public override MethodInfo GetRemoveMethod( bool nonPublic) {
81                         MonoEventInfo info;
82                         MonoEventInfo.get_event_info (this, out info);
83                                 
84                         return info.remove_method;
85                 }
86
87                 public override Type DeclaringType {
88                         get {
89                                 MonoEventInfo info;
90                                 MonoEventInfo.get_event_info (this, out info);
91                                 
92                                 return info.declaring_type;
93                         }
94                 }
95
96                 public override Type ReflectedType {
97                         get {
98                                 MonoEventInfo info;
99                                 MonoEventInfo.get_event_info (this, out info);
100                                 
101                                 return info.reflected_type;
102                         }
103                 }
104
105                 public override string Name {
106                         get {
107                                 MonoEventInfo info;
108                                 MonoEventInfo.get_event_info (this, out info);
109                                 
110                                 return info.name;
111                         }
112                 }
113
114                 public override string ToString () {
115                         return EventHandlerType + " " + Name;
116                 }
117
118         }
119 }