Merge pull request #496 from nicolas-raoul/unit-test-for-issue2907
[mono.git] / mcs / class / corlib / System.Reflection.Emit / FieldOnTypeBuilderInst.cs
1 //
2 // System.Reflection.Emit/FieldOnTypeBuilderInst.cs
3 //
4 // Author:
5 //   Zoltan Varga (vargaz@gmail.com)
6 //
7 //
8 // Copyright (C) 2008 Novell, Inc (http://www.novell.com)
9 //
10 // Permission is hereby granted, free of charge, to any person obtaining
11 // a copy of this software and associated documentation files (the
12 // "Software"), to deal in the Software without restriction, including
13 // without limitation the rights to use, copy, modify, merge, publish,
14 // distribute, sublicense, and/or sell copies of the Software, and to
15 // permit persons to whom the Software is furnished to do so, subject to
16 // the following conditions:
17 // 
18 // The above copyright notice and this permission notice shall be
19 // included in all copies or substantial portions of the Software.
20 // 
21 // THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
22 // EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
23 // MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
24 // NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
25 // LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
26 // OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
27 // WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
28 //
29
30 #if !FULL_AOT_RUNTIME
31 using System;
32 using System.Globalization;
33 using System.Reflection;
34 using System.Runtime.InteropServices;
35
36 namespace System.Reflection.Emit
37 {
38         /*
39          * This class represents a field of an instantiation of a generic type builder.
40          */
41         [StructLayout (LayoutKind.Sequential)]
42         internal class FieldOnTypeBuilderInst : FieldInfo
43         {
44                 #region Keep in sync with object-internals.h
45                 internal MonoGenericClass instantiation;
46                 internal FieldInfo fb;
47                 #endregion
48
49                 public FieldOnTypeBuilderInst (MonoGenericClass instantiation, FieldInfo fb) {
50                         this.instantiation = instantiation;
51                         this.fb = fb;
52                 }
53
54                 //
55                 // MemberInfo members
56                 //
57                 
58                 public override Type DeclaringType {
59                         get {
60                                 return instantiation;
61                         }
62                 }
63
64                 public override string Name {
65                         get {
66                                 return fb.Name;
67                         }
68                 }
69
70                 public override Type ReflectedType {
71                         get {
72                                 return instantiation;
73                         }
74                 }
75
76                 public override bool IsDefined (Type attributeType, bool inherit)
77                 {
78                         throw new NotSupportedException ();
79                 }
80
81                 public override object [] GetCustomAttributes (bool inherit)
82                 {
83                         throw new NotSupportedException ();
84                 }
85
86                 public override object [] GetCustomAttributes (Type attributeType, bool inherit)
87                 {
88                         throw new NotSupportedException ();
89                 }
90
91                 public override string ToString ()
92                 {
93                         return fb.FieldType.ToString () + " " + Name;
94                 }
95                 //
96                 // FieldInfo members
97                 //
98
99                 public override FieldAttributes Attributes {
100                         get {
101                                 return fb.Attributes;
102                         }
103                 }
104
105                 public override RuntimeFieldHandle FieldHandle {
106                         get {
107                                 throw new NotSupportedException ();
108                         }
109                 }
110
111                 public override int MetadataToken {
112                         get {
113                                 throw new InvalidOperationException ();
114                         } 
115                 }
116
117                 public override Type FieldType {
118                         get {
119                                 throw new NotSupportedException ();
120                         }
121                 }
122
123                 public override object GetValue(object obj) {
124                         throw new NotSupportedException ();
125                 }
126
127                 public override void SetValue (object obj, object value, BindingFlags invokeAttr, Binder binder, CultureInfo culture) {
128                         throw new NotSupportedException ();
129                 }
130         }
131 }
132 #endif