Update mcs/class/Commons.Xml.Relaxng/Commons.Xml.Relaxng/RelaxngPattern.cs
[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 using System;
31 using System.Globalization;
32 using System.Reflection;
33 using System.Runtime.InteropServices;
34
35 namespace System.Reflection.Emit
36 {
37         /*
38          * This class represents a field of an instantiation of a generic type builder.
39          */
40         [StructLayout (LayoutKind.Sequential)]
41         internal class FieldOnTypeBuilderInst : FieldInfo
42         {
43                 #region Keep in sync with object-internals.h
44                 internal MonoGenericClass instantiation;
45                 internal FieldInfo fb;
46                 #endregion
47
48                 public FieldOnTypeBuilderInst (MonoGenericClass instantiation, FieldInfo fb) {
49                         this.instantiation = instantiation;
50                         this.fb = fb;
51                 }
52
53                 //
54                 // MemberInfo members
55                 //
56                 
57                 public override Type DeclaringType {
58                         get {
59                                 return instantiation;
60                         }
61                 }
62
63                 public override string Name {
64                         get {
65                                 return fb.Name;
66                         }
67                 }
68
69                 public override Type ReflectedType {
70                         get {
71                                 return instantiation;
72                         }
73                 }
74
75                 public override bool IsDefined (Type attributeType, bool inherit)
76                 {
77                         throw new NotSupportedException ();
78                 }
79
80                 public override object [] GetCustomAttributes (bool inherit)
81                 {
82                         throw new NotSupportedException ();
83                 }
84
85                 public override object [] GetCustomAttributes (Type attributeType, bool inherit)
86                 {
87                         throw new NotSupportedException ();
88                 }
89
90                 public override string ToString ()
91                 {
92                         return fb.FieldType.ToString () + " " + Name;
93                 }
94                 //
95                 // FieldInfo members
96                 //
97
98                 public override FieldAttributes Attributes {
99                         get {
100                                 return fb.Attributes;
101                         }
102                 }
103
104                 public override RuntimeFieldHandle FieldHandle {
105                         get {
106                                 throw new NotSupportedException ();
107                         }
108                 }
109
110                 public override int MetadataToken {
111                         get {
112                                 throw new InvalidOperationException ();
113                         } 
114                 }
115
116                 public override Type FieldType {
117                         get {
118                                 throw new NotSupportedException ();
119                         }
120                 }
121
122                 public override object GetValue(object obj) {
123                         throw new NotSupportedException ();
124                 }
125
126                 public override void SetValue (object obj, object value, BindingFlags invokeAttr, Binder binder, CultureInfo culture) {
127                         throw new NotSupportedException ();
128                 }
129         }
130 }