2010-06-21 Atsushi Enomoto <atsushi@ximian.com>
[mcs.git] / class / corlib / System.Reflection.Emit / ConstructorOnTypeBuilderInst.cs
blobac017c8a27b8e31ba1a8ad70b9be5f0d65384576
1 //
2 // System.Reflection.Emit/ConstructorOnTypeBuilderInst.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.
30 using System;
31 using System.Globalization;
32 using System.Reflection;
34 namespace System.Reflection.Emit
37 * This class represents a ctor of an instantiation of a generic type builder.
39 internal class ConstructorOnTypeBuilderInst : ConstructorInfo
41 #region Keep in sync with object-internals.h
42 MonoGenericClass instantiation;
43 ConstructorInfo cb;
44 #endregion
46 public ConstructorOnTypeBuilderInst (MonoGenericClass instantiation, ConstructorInfo cb)
48 this.instantiation = instantiation;
49 this.cb = cb;
53 // MemberInfo members
56 public override Type DeclaringType {
57 get {
58 return instantiation;
62 public override string Name {
63 get {
64 return cb.Name;
68 public override Type ReflectedType {
69 get {
70 return instantiation;
74 public override bool IsDefined (Type attributeType, bool inherit)
76 return cb.IsDefined (attributeType, inherit);
79 public override object [] GetCustomAttributes (bool inherit)
81 return cb.GetCustomAttributes (inherit);
84 public override object [] GetCustomAttributes (Type attributeType, bool inherit)
86 return cb.GetCustomAttributes (attributeType, inherit);
90 // MethodBase members
93 public override MethodImplAttributes GetMethodImplementationFlags ()
95 return cb.GetMethodImplementationFlags ();
98 public override ParameterInfo[] GetParameters ()
100 /*FIXME, maybe the right thing to do when the type is creates is to retrieve from the inflated type*/
101 if (!instantiation.IsCompilerContext && !instantiation.IsCreated)
102 throw new NotSupportedException ();
104 ParameterInfo [] res;
105 if (cb is ConstructorBuilder) {
106 ConstructorBuilder cbuilder = (ConstructorBuilder)cb;
107 res = new ParameterInfo [cbuilder.parameters.Length];
108 for (int i = 0; i < cbuilder.parameters.Length; i++) {
109 Type type = instantiation.InflateType (cbuilder.parameters [i]);
110 res [i] = new ParameterInfo (cbuilder.pinfo == null ? null : cbuilder.pinfo [i], type, this, i + 1);
112 } else {
113 ParameterInfo[] parms = cb.GetParameters ();
114 res = new ParameterInfo [parms.Length];
115 for (int i = 0; i < parms.Length; i++) {
116 Type type = instantiation.InflateType (parms [i].ParameterType);
117 res [i] = new ParameterInfo (parms [i], type, this, i + 1);
120 return res;
123 public override int MetadataToken {
124 get {
125 if (!instantiation.IsCompilerContext)
126 return base.MetadataToken;
127 return cb.MetadataToken;
131 internal override int GetParameterCount ()
133 return cb.GetParameterCount ();
136 public override Object Invoke (Object obj, BindingFlags invokeAttr, Binder binder, Object[] parameters, CultureInfo culture)
138 return cb.Invoke (obj, invokeAttr, binder, parameters,
139 culture);
142 public override RuntimeMethodHandle MethodHandle {
143 get {
144 return cb.MethodHandle;
148 public override MethodAttributes Attributes {
149 get {
150 return cb.Attributes;
154 public override CallingConventions CallingConvention {
155 get {
156 return cb.CallingConvention;
160 public override Type [] GetGenericArguments ()
162 return cb.GetGenericArguments ();
165 public override bool ContainsGenericParameters {
166 get {
167 return false;
171 public override bool IsGenericMethodDefinition {
172 get {
173 return false;
177 public override bool IsGenericMethod {
178 get {
179 return false;
184 // MethodBase members
187 public override object Invoke (BindingFlags invokeAttr, Binder binder, object[] parameters,
188 CultureInfo culture)
190 throw new InvalidOperationException ();