Release 4.0.0-preview1-00304
[platform/core/csapi/tizenfx.git] / pkg / build / tizen40 / ref / System.Reflection.Emit.xml
1 <?xml version="1.0" encoding="utf-8"?><span>
2 <doc>
3   <assembly>
4     <name>System.Reflection.Emit</name>
5   </assembly>
6   <members>
7     <member name="T:System.Reflection.Emit.AssemblyBuilder">
8       <summary>Defines and represents a dynamic assembly.</summary>
9     </member>
10     <member name="P:System.Reflection.Emit.AssemblyBuilder.DefinedTypes">
11       <returns></returns>
12     </member>
13     <member name="M:System.Reflection.Emit.AssemblyBuilder.DefineDynamicAssembly(System.Reflection.AssemblyName,System.Reflection.Emit.AssemblyBuilderAccess)">
14       <summary>Defines a dynamic assembly that has the specified name and access rights.</summary>
15       <param name="name">The name of the assembly.</param>
16       <param name="access">The access rights of the assembly.</param>
17       <returns>An object that represents the new assembly.</returns>
18     </member>
19     <member name="M:System.Reflection.Emit.AssemblyBuilder.DefineDynamicAssembly(System.Reflection.AssemblyName,System.Reflection.Emit.AssemblyBuilderAccess,System.Collections.Generic.IEnumerable{System.Reflection.Emit.CustomAttributeBuilder})">
20       <summary>Defines a new assembly that has the specified name, access rights, and attributes.</summary>
21       <param name="name">The name of the assembly.</param>
22       <param name="access">The access rights of the assembly.</param>
23       <param name="assemblyAttributes">A collection that contains the attributes of the assembly.</param>
24       <returns>An object that represents the new assembly.</returns>
25     </member>
26     <member name="M:System.Reflection.Emit.AssemblyBuilder.DefineDynamicModule(System.String)">
27       <summary>Defines a named transient dynamic module in this assembly.</summary>
28       <param name="name">The name of the dynamic module. Must be less than 260 characters in length.</param>
29       <returns>A <see cref="T:System.Reflection.Emit.ModuleBuilder"></see> representing the defined dynamic module.</returns>
30       <exception cref="T:System.ArgumentException"><paramref name="name">name</paramref> begins with white space.   -or-   The length of <paramref name="name">name</paramref> is zero.   -or-   The length of <paramref name="name">name</paramref> is greater than or equal to 260.</exception>
31       <exception cref="T:System.ArgumentNullException"><paramref name="name">name</paramref> is null.</exception>
32       <exception cref="T:System.Security.SecurityException">The caller does not have the required permission.</exception>
33       <exception cref="T:System.ExecutionEngineException">The assembly for default symbol writer cannot be loaded.   -or-   The type that implements the default symbol writer interface cannot be found.</exception>
34     </member>
35     <member name="M:System.Reflection.Emit.AssemblyBuilder.Equals(System.Object)">
36       <summary>Returns a value that indicates whether this instance is equal to the specified object.</summary>
37       <param name="obj">An object to compare with this instance, or null.</param>
38       <returns>true if <paramref name="obj">obj</paramref> equals the type and value of this instance; otherwise, false.</returns>
39     </member>
40     <member name="P:System.Reflection.Emit.AssemblyBuilder.FullName">
41       <summary>Gets the display name of the current dynamic assembly.</summary>
42       <returns>The display name of the dynamic assembly.</returns>
43     </member>
44     <member name="M:System.Reflection.Emit.AssemblyBuilder.GetDynamicModule(System.String)">
45       <summary>Returns the dynamic module with the specified name.</summary>
46       <param name="name">The name of the requested dynamic module.</param>
47       <returns>A ModuleBuilder object representing the requested dynamic module.</returns>
48       <exception cref="T:System.ArgumentNullException"><paramref name="name">name</paramref> is null.</exception>
49       <exception cref="T:System.ArgumentException">The length of <paramref name="name">name</paramref> is zero.</exception>
50       <exception cref="T:System.Security.SecurityException">The caller does not have the required permission.</exception>
51     </member>
52     <member name="M:System.Reflection.Emit.AssemblyBuilder.GetHashCode">
53       <summary>Returns the hash code for this instance.</summary>
54       <returns>A 32-bit signed integer hash code.</returns>
55     </member>
56     <member name="M:System.Reflection.Emit.AssemblyBuilder.GetManifestResourceInfo(System.String)">
57       <summary>Returns information about how the given resource has been persisted.</summary>
58       <param name="resourceName">The name of the resource.</param>
59       <returns><see cref="T:System.Reflection.ManifestResourceInfo"></see> populated with information about the resource's topology, or null if the resource is not found.</returns>
60       <exception cref="T:System.NotSupportedException">This method is not currently supported.</exception>
61       <exception cref="T:System.Security.SecurityException">The caller does not have the required permission.</exception>
62     </member>
63     <member name="M:System.Reflection.Emit.AssemblyBuilder.GetManifestResourceNames">
64       <summary>Loads the specified manifest resource from this assembly.</summary>
65       <returns>An array of type String containing the names of all the resources.</returns>
66       <exception cref="T:System.NotSupportedException">This method is not supported on a dynamic assembly. To get the manifest resource names, use <see cref="M:System.Reflection.Assembly.GetManifestResourceNames"></see>.</exception>
67       <exception cref="T:System.Security.SecurityException">The caller does not have the required permission.</exception>
68     </member>
69     <member name="M:System.Reflection.Emit.AssemblyBuilder.GetManifestResourceStream(System.String)">
70       <summary>Loads the specified manifest resource from this assembly.</summary>
71       <param name="name">The name of the manifest resource being requested.</param>
72       <returns>A <see cref="T:System.IO.Stream"></see> representing this manifest resource.</returns>
73       <exception cref="T:System.NotSupportedException">This method is not currently supported.</exception>
74       <exception cref="T:System.Security.SecurityException">The caller does not have the required permission.</exception>
75     </member>
76     <member name="P:System.Reflection.Emit.AssemblyBuilder.IsDynamic">
77       <summary>Gets a value that indicates that the current assembly is a dynamic assembly.</summary>
78       <returns>Always true.</returns>
79     </member>
80     <member name="P:System.Reflection.Emit.AssemblyBuilder.ManifestModule">
81       <summary>Gets the module in the current <see cref="T:System.Reflection.Emit.AssemblyBuilder"></see> that contains the assembly manifest.</summary>
82       <returns>The manifest module.</returns>
83     </member>
84     <member name="P:System.Reflection.Emit.AssemblyBuilder.Modules">
85       <returns></returns>
86     </member>
87     <member name="M:System.Reflection.Emit.AssemblyBuilder.SetCustomAttribute(System.Reflection.Emit.CustomAttributeBuilder)">
88       <summary>Set a custom attribute on this assembly using a custom attribute builder.</summary>
89       <param name="customBuilder">An instance of a helper class to define the custom attribute.</param>
90       <exception cref="T:System.ArgumentNullException"><paramref name="con">con</paramref> is null.</exception>
91       <exception cref="T:System.Security.SecurityException">The caller does not have the required permission.</exception>
92     </member>
93     <member name="M:System.Reflection.Emit.AssemblyBuilder.SetCustomAttribute(System.Reflection.ConstructorInfo,System.Byte[])">
94       <summary>Set a custom attribute on this assembly using a specified custom attribute blob.</summary>
95       <param name="con">The constructor for the custom attribute.</param>
96       <param name="binaryAttribute">A byte blob representing the attributes.</param>
97       <exception cref="T:System.ArgumentNullException"><paramref name="con">con</paramref> or <paramref name="binaryAttribute">binaryAttribute</paramref> is null.</exception>
98       <exception cref="T:System.Security.SecurityException">The caller does not have the required permission.</exception>
99       <exception cref="T:System.ArgumentException"><paramref name="con">con</paramref> is not a RuntimeConstructorInfo object.</exception>
100     </member>
101     <member name="T:System.Reflection.Emit.AssemblyBuilderAccess">
102       <summary>Defines the access modes for a dynamic assembly.</summary>
103     </member>
104     <member name="F:System.Reflection.Emit.AssemblyBuilderAccess.Run">
105       <summary>The dynamic assembly can be executed, but not saved.</summary>
106       <returns></returns>
107     </member>
108     <member name="F:System.Reflection.Emit.AssemblyBuilderAccess.RunAndCollect">
109       <summary>The dynamic assembly will be automatically unloaded and its memory reclaimed, when it's no longer accessible.</summary>
110       <returns></returns>
111     </member>
112     <member name="T:System.Reflection.Emit.ConstructorBuilder">
113       <summary>Defines and represents a constructor of a dynamic class.</summary>
114     </member>
115     <member name="P:System.Reflection.Emit.ConstructorBuilder.Attributes">
116       <summary>Retrieves the attributes for this constructor.</summary>
117       <returns>Returns the attributes for this constructor.</returns>
118     </member>
119     <member name="P:System.Reflection.Emit.ConstructorBuilder.CallingConvention">
120       <summary>Gets a <see cref="T:System.Reflection.CallingConventions"></see> value that depends on whether the declaring type is generic.</summary>
121       <returns><see cref="F:System.Reflection.CallingConventions.HasThis"></see> if the declaring type is generic; otherwise, <see cref="F:System.Reflection.CallingConventions.Standard"></see>.</returns>
122     </member>
123     <member name="P:System.Reflection.Emit.ConstructorBuilder.DeclaringType">
124       <summary>Retrieves a reference to the <see cref="T:System.Type"></see> object for the type that declares this member.</summary>
125       <returns>Returns the <see cref="T:System.Type"></see> object for the type that declares this member.</returns>
126     </member>
127     <member name="M:System.Reflection.Emit.ConstructorBuilder.DefineParameter(System.Int32,System.Reflection.ParameterAttributes,System.String)">
128       <summary>Defines a parameter of this constructor.</summary>
129       <param name="iSequence">The position of the parameter in the parameter list. Parameters are indexed beginning with the number 1 for the first parameter.</param>
130       <param name="attributes">The attributes of the parameter.</param>
131       <param name="strParamName">The name of the parameter. The name can be the null string.</param>
132       <returns>Returns a ParameterBuilder object that represents the new parameter of this constructor.</returns>
133       <exception cref="T:System.ArgumentOutOfRangeException"><paramref name="iSequence">iSequence</paramref> is less than 0 (zero), or it is greater than the number of parameters of the constructor.</exception>
134       <exception cref="T:System.InvalidOperationException">The containing type has been created using <see cref="M:System.Reflection.Emit.TypeBuilder.CreateType"></see>.</exception>
135     </member>
136     <member name="M:System.Reflection.Emit.ConstructorBuilder.GetCustomAttributes(System.Boolean)">
137       <summary>Returns all the custom attributes defined for this constructor.</summary>
138       <param name="inherit">Controls inheritance of custom attributes from base classes. This parameter is ignored.</param>
139       <returns>Returns an array of objects representing all the custom attributes of the constructor represented by this <see cref="T:System.Reflection.Emit.ConstructorBuilder"></see> instance.</returns>
140       <exception cref="T:System.NotSupportedException">This method is not currently supported.</exception>
141     </member>
142     <member name="M:System.Reflection.Emit.ConstructorBuilder.GetCustomAttributes(System.Type,System.Boolean)">
143       <summary>Returns the custom attributes identified by the given type.</summary>
144       <param name="attributeType">The custom attribute type.</param>
145       <param name="inherit">Controls inheritance of custom attributes from base classes. This parameter is ignored.</param>
146       <returns>Returns an array of type <see cref="T:System.Object"></see> representing the attributes of this constructor.</returns>
147       <exception cref="T:System.NotSupportedException">This method is not currently supported.</exception>
148     </member>
149     <member name="M:System.Reflection.Emit.ConstructorBuilder.GetILGenerator(System.Int32)">
150       <summary>Gets an <see cref="T:System.Reflection.Emit.ILGenerator"></see> object, with the specified MSIL stream size, that can be used to build a method body for this constructor.</summary>
151       <param name="streamSize">The size of the MSIL stream, in bytes.</param>
152       <returns>An <see cref="T:System.Reflection.Emit.ILGenerator"></see> for this constructor.</returns>
153       <exception cref="T:System.InvalidOperationException">The constructor is a default constructor.   -or-   The constructor has <see cref="T:System.Reflection.MethodAttributes"></see> or <see cref="T:System.Reflection.MethodImplAttributes"></see> flags indicating that it should not have a method body.</exception>
154     </member>
155     <member name="M:System.Reflection.Emit.ConstructorBuilder.GetILGenerator">
156       <summary>Gets an <see cref="T:System.Reflection.Emit.ILGenerator"></see> for this constructor.</summary>
157       <returns>Returns an <see cref="T:System.Reflection.Emit.ILGenerator"></see> object for this constructor.</returns>
158       <exception cref="T:System.InvalidOperationException">The constructor is a default constructor.   -or-   The constructor has <see cref="T:System.Reflection.MethodAttributes"></see> or <see cref="T:System.Reflection.MethodImplAttributes"></see> flags indicating that it should not have a method body.</exception>
159     </member>
160     <member name="M:System.Reflection.Emit.ConstructorBuilder.GetMethodImplementationFlags">
161       <summary>Returns the method implementation flags for this constructor.</summary>
162       <returns>The method implementation flags for this constructor.</returns>
163     </member>
164     <member name="M:System.Reflection.Emit.ConstructorBuilder.GetParameters">
165       <summary>Returns the parameters of this constructor.</summary>
166       <returns>Returns an array of <see cref="T:System.Reflection.ParameterInfo"></see> objects that represent the parameters of this constructor.</returns>
167       <exception cref="T:System.InvalidOperationException"><see cref="M:System.Reflection.Emit.TypeBuilder.CreateType"></see> has not been called on this constructor's type, in the .NET Framework versions 1.0 and 1.1.</exception>
168       <exception cref="T:System.NotSupportedException"><see cref="M:System.Reflection.Emit.TypeBuilder.CreateType"></see> has not been called on this constructor's type, in the .NET Framework version 2.0.</exception>
169     </member>
170     <member name="P:System.Reflection.Emit.ConstructorBuilder.InitLocals">
171       <summary>Gets or sets whether the local variables in this constructor should be zero-initialized.</summary>
172       <returns>Read/write. Gets or sets whether the local variables in this constructor should be zero-initialized.</returns>
173     </member>
174     <member name="M:System.Reflection.Emit.ConstructorBuilder.Invoke(System.Reflection.BindingFlags,System.Reflection.Binder,System.Object[],System.Globalization.CultureInfo)">
175       <summary>Invokes the constructor dynamically reflected by this instance on the given object, passing along the specified parameters, and under the constraints of the given binder.</summary>
176       <param name="invokeAttr">This must be a bit flag from <see cref="T:System.Reflection.BindingFlags"></see>, such as InvokeMethod, NonPublic, and so on.</param>
177       <param name="binder">An object that enables the binding, coercion of argument types, invocation of members, and retrieval of MemberInfo objects using reflection. If binder is null, the default binder is used. See <see cref="T:System.Reflection.Binder"></see>.</param>
178       <param name="parameters">An argument list. This is an array of arguments with the same number, order, and type as the parameters of the constructor to be invoked. If there are no parameters this should be null.</param>
179       <param name="culture">An instance of <see cref="T:System.Globalization.CultureInfo"></see> used to govern the coercion of types. If this is null, the <see cref="T:System.Globalization.CultureInfo"></see> for the current thread is used. (For example, this is necessary to convert a <see cref="T:System.String"></see> that represents 1000 to a <see cref="T:System.Double"></see> value, since 1000 is represented differently by different cultures.)</param>
180       <returns>Returns an <see cref="T:System.Object"></see> that is the return value of the invoked constructor.</returns>
181       <exception cref="T:System.NotSupportedException">This method is not currently supported. You can retrieve the constructor using <see cref="M:System.Type.GetConstructor(System.Reflection.BindingFlags,System.Reflection.Binder,System.Reflection.CallingConventions,System.Type[],System.Reflection.ParameterModifier[])"></see> and call <see cref="M:System.Reflection.ConstructorInfo.Invoke(System.Reflection.BindingFlags,System.Reflection.Binder,System.Object[],System.Globalization.CultureInfo)"></see> on the returned <see cref="T:System.Reflection.ConstructorInfo"></see>.</exception>
182     </member>
183     <member name="M:System.Reflection.Emit.ConstructorBuilder.Invoke(System.Object,System.Reflection.BindingFlags,System.Reflection.Binder,System.Object[],System.Globalization.CultureInfo)">
184       <summary>Dynamically invokes the constructor reflected by this instance with the specified arguments, under the constraints of the specified Binder.</summary>
185       <param name="obj">The object that needs to be reinitialized.</param>
186       <param name="invokeAttr">One of the BindingFlags values that specifies the type of binding that is desired.</param>
187       <param name="binder">A Binder that defines a set of properties and enables the binding, coercion of argument types, and invocation of members using reflection. If binder is null, then Binder.DefaultBinding is used.</param>
188       <param name="parameters">An argument list. This is an array of arguments with the same number, order, and type as the parameters of the constructor to be invoked. If there are no parameters, this should be a null reference (Nothing in Visual Basic).</param>
189       <param name="culture">A <see cref="T:System.Globalization.CultureInfo"></see> used to govern the coercion of types. If this is null, the <see cref="T:System.Globalization.CultureInfo"></see> for the current thread is used.</param>
190       <returns>An instance of the class associated with the constructor.</returns>
191       <exception cref="T:System.NotSupportedException">This method is not currently supported. You can retrieve the constructor using <see cref="M:System.Type.GetConstructor(System.Reflection.BindingFlags,System.Reflection.Binder,System.Reflection.CallingConventions,System.Type[],System.Reflection.ParameterModifier[])"></see> and call <see cref="M:System.Reflection.ConstructorInfo.Invoke(System.Reflection.BindingFlags,System.Reflection.Binder,System.Object[],System.Globalization.CultureInfo)"></see> on the returned <see cref="T:System.Reflection.ConstructorInfo"></see>.</exception>
192     </member>
193     <member name="M:System.Reflection.Emit.ConstructorBuilder.IsDefined(System.Type,System.Boolean)">
194       <summary>Checks if the specified custom attribute type is defined.</summary>
195       <param name="attributeType">A custom attribute type.</param>
196       <param name="inherit">Controls inheritance of custom attributes from base classes. This parameter is ignored.</param>
197       <returns>true if the specified custom attribute type is defined; otherwise, false.</returns>
198       <exception cref="T:System.NotSupportedException">This method is not currently supported. You can retrieve the constructor using <see cref="M:System.Type.GetConstructor(System.Reflection.BindingFlags,System.Reflection.Binder,System.Reflection.CallingConventions,System.Type[],System.Reflection.ParameterModifier[])"></see> and call <see cref="M:System.Reflection.MemberInfo.IsDefined(System.Type,System.Boolean)"></see> on the returned <see cref="T:System.Reflection.ConstructorInfo"></see>.</exception>
199     </member>
200     <member name="P:System.Reflection.Emit.ConstructorBuilder.MethodHandle">
201       <summary>Retrieves the internal handle for the method. Use this handle to access the underlying metadata handle.</summary>
202       <returns>Returns the internal handle for the method. Use this handle to access the underlying metadata handle.</returns>
203       <exception cref="T:System.NotSupportedException">This property is not supported on this class.</exception>
204     </member>
205     <member name="P:System.Reflection.Emit.ConstructorBuilder.MethodImplementationFlags">
206       <returns></returns>
207     </member>
208     <member name="P:System.Reflection.Emit.ConstructorBuilder.Module">
209       <summary>Gets the dynamic module in which this constructor is defined.</summary>
210       <returns>A <see cref="T:System.Reflection.Module"></see> object that represents the dynamic module in which this constructor is defined.</returns>
211     </member>
212     <member name="P:System.Reflection.Emit.ConstructorBuilder.Name">
213       <summary>Retrieves the name of this constructor.</summary>
214       <returns>Returns the name of this constructor.</returns>
215     </member>
216     <member name="P:System.Reflection.Emit.ConstructorBuilder.ReflectedType">
217       <summary>Holds a reference to the <see cref="T:System.Type"></see> object from which this object was obtained.</summary>
218       <returns>Returns the Type object from which this object was obtained.</returns>
219     </member>
220     <member name="M:System.Reflection.Emit.ConstructorBuilder.SetCustomAttribute(System.Reflection.Emit.CustomAttributeBuilder)">
221       <summary>Set a custom attribute using a custom attribute builder.</summary>
222       <param name="customBuilder">An instance of a helper class to define the custom attribute.</param>
223       <exception cref="T:System.ArgumentNullException"><paramref name="customBuilder">customBuilder</paramref> is null.</exception>
224     </member>
225     <member name="M:System.Reflection.Emit.ConstructorBuilder.SetCustomAttribute(System.Reflection.ConstructorInfo,System.Byte[])">
226       <summary>Set a custom attribute using a specified custom attribute blob.</summary>
227       <param name="con">The constructor for the custom attribute.</param>
228       <param name="binaryAttribute">A byte blob representing the attributes.</param>
229       <exception cref="T:System.ArgumentNullException"><paramref name="con">con</paramref> or <paramref name="binaryAttribute">binaryAttribute</paramref> is null.</exception>
230     </member>
231     <member name="M:System.Reflection.Emit.ConstructorBuilder.SetImplementationFlags(System.Reflection.MethodImplAttributes)">
232       <summary>Sets the method implementation flags for this constructor.</summary>
233       <param name="attributes">The method implementation flags.</param>
234       <exception cref="T:System.InvalidOperationException">The containing type has been created using <see cref="M:System.Reflection.Emit.TypeBuilder.CreateType"></see>.</exception>
235     </member>
236     <member name="M:System.Reflection.Emit.ConstructorBuilder.ToString">
237       <summary>Returns this <see cref="T:System.Reflection.Emit.ConstructorBuilder"></see> instance as a <see cref="T:System.String"></see>.</summary>
238       <returns>Returns a <see cref="T:System.String"></see> containing the name, attributes, and exceptions of this constructor, followed by the current Microsoft intermediate language (MSIL) stream.</returns>
239     </member>
240     <member name="T:System.Reflection.Emit.EnumBuilder">
241       <summary>Describes and represents an enumeration type.</summary>
242     </member>
243     <member name="P:System.Reflection.Emit.EnumBuilder.Assembly">
244       <summary>Retrieves the dynamic assembly that contains this enum definition.</summary>
245       <returns>Read-only. The dynamic assembly that contains this enum definition.</returns>
246     </member>
247     <member name="P:System.Reflection.Emit.EnumBuilder.AssemblyQualifiedName">
248       <summary>Returns the full path of this enum qualified by the display name of the parent assembly.</summary>
249       <returns>Read-only. The full path of this enum qualified by the display name of the parent assembly.</returns>
250     </member>
251     <member name="P:System.Reflection.Emit.EnumBuilder.Attributes">
252       <returns></returns>
253     </member>
254     <member name="P:System.Reflection.Emit.EnumBuilder.BaseType">
255       <summary>Returns the parent <see cref="T:System.Type"></see> of this type which is always <see cref="T:System.Enum"></see>.</summary>
256       <returns>Read-only. The parent <see cref="T:System.Type"></see> of this type.</returns>
257     </member>
258     <member name="P:System.Reflection.Emit.EnumBuilder.ContainsGenericParameters">
259       <returns></returns>
260     </member>
261     <member name="M:System.Reflection.Emit.EnumBuilder.CreateTypeInfo">
262       <summary>Gets a <see cref="T:System.Reflection.TypeInfo"></see> object that represents this enumeration.</summary>
263       <returns>An object that represents this enumeration.</returns>
264     </member>
265     <member name="P:System.Reflection.Emit.EnumBuilder.DeclaringMethod">
266       <returns></returns>
267     </member>
268     <member name="P:System.Reflection.Emit.EnumBuilder.DeclaringType">
269       <summary>Returns the type that declared this <see cref="T:System.Reflection.Emit.EnumBuilder"></see>.</summary>
270       <returns>Read-only. The type that declared this <see cref="T:System.Reflection.Emit.EnumBuilder"></see>.</returns>
271     </member>
272     <member name="M:System.Reflection.Emit.EnumBuilder.DefineLiteral(System.String,System.Object)">
273       <summary>Defines the named static field in an enumeration type with the specified constant value.</summary>
274       <param name="literalName">The name of the static field.</param>
275       <param name="literalValue">The constant value of the literal.</param>
276       <returns>The defined field.</returns>
277     </member>
278     <member name="P:System.Reflection.Emit.EnumBuilder.FullName">
279       <summary>Returns the full path of this enum.</summary>
280       <returns>Read-only. The full path of this enum.</returns>
281     </member>
282     <member name="P:System.Reflection.Emit.EnumBuilder.GenericParameterAttributes">
283       <returns></returns>
284     </member>
285     <member name="P:System.Reflection.Emit.EnumBuilder.GenericParameterPosition">
286       <returns></returns>
287     </member>
288     <member name="P:System.Reflection.Emit.EnumBuilder.GenericTypeArguments">
289       <returns></returns>
290     </member>
291     <member name="M:System.Reflection.Emit.EnumBuilder.GetArrayRank">
292       <returns></returns>
293     </member>
294     <member name="M:System.Reflection.Emit.EnumBuilder.GetConstructors(System.Reflection.BindingFlags)">
295       <summary>Returns an array of <see cref="T:System.Reflection.ConstructorInfo"></see> objects representing the public and non-public constructors defined for this class, as specified.</summary>
296       <param name="bindingAttr">This must be a bit flag from <see cref="T:System.Reflection.BindingFlags"></see> : InvokeMethod, NonPublic, and so on.</param>
297       <returns>Returns an array of <see cref="T:System.Reflection.ConstructorInfo"></see> objects representing the specified constructors defined for this class. If no constructors are defined, an empty array is returned.</returns>
298       <exception cref="T:System.NotSupportedException">This method is not currently supported in types that are not complete.</exception>
299     </member>
300     <member name="M:System.Reflection.Emit.EnumBuilder.GetCustomAttributes(System.Type,System.Boolean)">
301       <summary>Returns the custom attributes identified by the given type.</summary>
302       <param name="attributeType">The Type object to which the custom attributes are applied.</param>
303       <param name="inherit">Specifies whether to search this member's inheritance chain to find the attributes.</param>
304       <returns>Returns an array of objects representing the attributes of this constructor that are of <see cref="T:System.Type"></see><paramref name="attributeType">attributeType</paramref>.</returns>
305       <exception cref="T:System.NotSupportedException">This method is not currently supported in types that are not complete.</exception>
306     </member>
307     <member name="M:System.Reflection.Emit.EnumBuilder.GetCustomAttributes(System.Boolean)">
308       <summary>Returns all the custom attributes defined for this constructor.</summary>
309       <param name="inherit">Specifies whether to search this member's inheritance chain to find the attributes.</param>
310       <returns>Returns an array of objects representing all the custom attributes of the constructor represented by this <see cref="T:System.Reflection.Emit.ConstructorBuilder"></see> instance.</returns>
311       <exception cref="T:System.NotSupportedException">This method is not currently supported in types that are not complete.</exception>
312     </member>
313     <member name="M:System.Reflection.Emit.EnumBuilder.GetElementType">
314       <summary>Calling this method always throws <see cref="T:System.NotSupportedException"></see>.</summary>
315       <returns>This method is not supported. No value is returned.</returns>
316       <exception cref="T:System.NotSupportedException">This method is not currently supported.</exception>
317     </member>
318     <member name="M:System.Reflection.Emit.EnumBuilder.GetEnumUnderlyingType">
319       <summary>Returns the underlying integer type of the current enumeration, which is set when the enumeration builder is defined.</summary>
320       <returns>The underlying type.</returns>
321     </member>
322     <member name="M:System.Reflection.Emit.EnumBuilder.GetEvent(System.String,System.Reflection.BindingFlags)">
323       <summary>Returns the event with the specified name.</summary>
324       <param name="name">The name of the event to get.</param>
325       <param name="bindingAttr">This invocation attribute. This must be a bit flag from <see cref="T:System.Reflection.BindingFlags"></see> : InvokeMethod, NonPublic, and so on.</param>
326       <returns>Returns an <see cref="T:System.Reflection.EventInfo"></see> object representing the event declared or inherited by this type with the specified name. If there are no matches, null is returned.</returns>
327       <exception cref="T:System.NotSupportedException">This method is not currently supported in types that are not complete.</exception>
328     </member>
329     <member name="M:System.Reflection.Emit.EnumBuilder.GetEvents">
330       <summary>Returns the events for the public events declared or inherited by this type.</summary>
331       <returns>Returns an array of <see cref="T:System.Reflection.EventInfo"></see> objects representing the public events declared or inherited by this type. An empty array is returned if there are no public events.</returns>
332       <exception cref="T:System.NotSupportedException">This method is not currently supported in types that are not complete.</exception>
333     </member>
334     <member name="M:System.Reflection.Emit.EnumBuilder.GetEvents(System.Reflection.BindingFlags)">
335       <summary>Returns the public and non-public events that are declared by this type.</summary>
336       <param name="bindingAttr">This must be a bit flag from <see cref="T:System.Reflection.BindingFlags"></see>, such as InvokeMethod, NonPublic, and so on.</param>
337       <returns>Returns an array of <see cref="T:System.Reflection.EventInfo"></see> objects representing the public and non-public events declared or inherited by this type. An empty array is returned if there are no events, as specified.</returns>
338       <exception cref="T:System.NotSupportedException">This method is not currently supported in types that are not complete.</exception>
339     </member>
340     <member name="M:System.Reflection.Emit.EnumBuilder.GetField(System.String,System.Reflection.BindingFlags)">
341       <summary>Returns the field specified by the given name.</summary>
342       <param name="name">The name of the field to get.</param>
343       <param name="bindingAttr">This must be a bit flag from <see cref="T:System.Reflection.BindingFlags"></see> : InvokeMethod, NonPublic, and so on.</param>
344       <returns>Returns the <see cref="T:System.Reflection.FieldInfo"></see> object representing the field declared or inherited by this type with the specified name and public or non-public modifier. If there are no matches, then null is returned.</returns>
345       <exception cref="T:System.NotSupportedException">This method is not currently supported in types that are not complete.</exception>
346     </member>
347     <member name="M:System.Reflection.Emit.EnumBuilder.GetFields(System.Reflection.BindingFlags)">
348       <summary>Returns the public and non-public fields that are declared by this type.</summary>
349       <param name="bindingAttr">This must be a bit flag from <see cref="T:System.Reflection.BindingFlags"></see>, such as InvokeMethod, NonPublic, and so on.</param>
350       <returns>Returns an array of <see cref="T:System.Reflection.FieldInfo"></see> objects representing the public and non-public fields declared or inherited by this type. An empty array is returned if there are no fields, as specified.</returns>
351       <exception cref="T:System.NotSupportedException">This method is not currently supported in types that are not complete.</exception>
352     </member>
353     <member name="M:System.Reflection.Emit.EnumBuilder.GetGenericParameterConstraints">
354       <returns></returns>
355     </member>
356     <member name="M:System.Reflection.Emit.EnumBuilder.GetGenericTypeDefinition">
357       <returns></returns>
358     </member>
359     <member name="M:System.Reflection.Emit.EnumBuilder.GetInterface(System.String,System.Boolean)">
360       <summary>Returns the interface implemented (directly or indirectly) by this type, with the specified fully-qualified name.</summary>
361       <param name="name">The name of the interface.</param>
362       <param name="ignoreCase">If true, the search is case-insensitive. If false, the search is case-sensitive.</param>
363       <returns>Returns a <see cref="T:System.Type"></see> object representing the implemented interface. Returns null if no interface matching name is found.</returns>
364       <exception cref="T:System.NotSupportedException">This method is not currently supported in types that are not complete.</exception>
365     </member>
366     <member name="M:System.Reflection.Emit.EnumBuilder.GetInterfaceMap(System.Type)">
367       <summary>Returns an interface mapping for the interface requested.</summary>
368       <param name="interfaceType">The type of the interface for which the interface mapping is to be retrieved.</param>
369       <returns>The requested interface mapping.</returns>
370       <exception cref="T:System.ArgumentException">The type does not implement the interface.</exception>
371     </member>
372     <member name="M:System.Reflection.Emit.EnumBuilder.GetInterfaces">
373       <summary>Returns an array of all the interfaces implemented on this a class and its base classes.</summary>
374       <returns>Returns an array of <see cref="T:System.Type"></see> objects representing the implemented interfaces. If none are defined, an empty array is returned.</returns>
375     </member>
376     <member name="M:System.Reflection.Emit.EnumBuilder.GetMember(System.String,System.Reflection.MemberTypes,System.Reflection.BindingFlags)">
377       <summary>Returns all members with the specified name, type, and binding that are declared or inherited by this type.</summary>
378       <param name="name">The name of the member.</param>
379       <param name="type">The type of member that is to be returned.</param>
380       <param name="bindingAttr">This must be a bit flag from <see cref="T:System.Reflection.BindingFlags"></see> : InvokeMethod, NonPublic, and so on.</param>
381       <returns>Returns an array of <see cref="T:System.Reflection.MemberInfo"></see> objects representing the public and non-public members defined on this type if <paramref name="nonPublic">nonPublic</paramref> is used; otherwise, only the public members are returned.</returns>
382       <exception cref="T:System.NotSupportedException">This method is not currently supported in types that are not complete.</exception>
383     </member>
384     <member name="M:System.Reflection.Emit.EnumBuilder.GetMembers(System.Reflection.BindingFlags)">
385       <summary>Returns the specified members declared or inherited by this type,.</summary>
386       <param name="bindingAttr">This must be a bit flag from <see cref="T:System.Reflection.BindingFlags"></see> : InvokeMethod, NonPublic, and so on.</param>
387       <returns>Returns an array of <see cref="T:System.Reflection.MemberInfo"></see> objects representing the public and non-public members declared or inherited by this type. An empty array is returned if there are no matching members.</returns>
388       <exception cref="T:System.NotSupportedException">This method is not currently supported in types that are not complete.</exception>
389     </member>
390     <member name="M:System.Reflection.Emit.EnumBuilder.GetMethods(System.Reflection.BindingFlags)">
391       <summary>Returns all the public and non-public methods declared or inherited by this type, as specified.</summary>
392       <param name="bindingAttr">This must be a bit flag from <see cref="T:System.Reflection.BindingFlags"></see>, such as InvokeMethod, NonPublic, and so on.</param>
393       <returns>Returns an array of <see cref="T:System.Reflection.MethodInfo"></see> objects representing the public and non-public methods defined on this type if <paramref name="nonPublic">nonPublic</paramref> is used; otherwise, only the public methods are returned.</returns>
394       <exception cref="T:System.NotSupportedException">This method is not currently supported in types that are not complete.</exception>
395     </member>
396     <member name="M:System.Reflection.Emit.EnumBuilder.GetNestedType(System.String,System.Reflection.BindingFlags)">
397       <summary>Returns the specified nested type that is declared by this type.</summary>
398       <param name="name">The <see cref="T:System.String"></see> containing the name of the nested type to get.</param>
399       <param name="bindingAttr">A bitmask comprised of one or more <see cref="T:System.Reflection.BindingFlags"></see> that specify how the search is conducted.   -or-   Zero, to conduct a case-sensitive search for public methods.</param>
400       <returns>A <see cref="T:System.Type"></see> object representing the nested type that matches the specified requirements, if found; otherwise, null.</returns>
401       <exception cref="T:System.NotSupportedException">This method is not currently supported in types that are not complete.</exception>
402     </member>
403     <member name="M:System.Reflection.Emit.EnumBuilder.GetNestedTypes(System.Reflection.BindingFlags)">
404       <summary>Returns the public and non-public nested types that are declared or inherited by this type.</summary>
405       <param name="bindingAttr">This must be a bit flag from <see cref="T:System.Reflection.BindingFlags"></see>, such as InvokeMethod, NonPublic, and so on.</param>
406       <returns>An array of <see cref="T:System.Type"></see> objects representing all the types nested within the current <see cref="T:System.Type"></see> that match the specified binding constraints.   An empty array of type <see cref="T:System.Type"></see>, if no types are nested within the current <see cref="T:System.Type"></see>, or if none of the nested types match the binding constraints.</returns>
407       <exception cref="T:System.NotSupportedException">This method is not currently supported in types that are not complete.</exception>
408     </member>
409     <member name="M:System.Reflection.Emit.EnumBuilder.GetProperties(System.Reflection.BindingFlags)">
410       <summary>Returns all the public and non-public properties declared or inherited by this type, as specified.</summary>
411       <param name="bindingAttr">This invocation attribute. This must be a bit flag from <see cref="T:System.Reflection.BindingFlags"></see> : InvokeMethod, NonPublic, and so on.</param>
412       <returns>Returns an array of <see cref="T:System.Reflection.PropertyInfo"></see> objects representing the public and non-public properties defined on this type if <paramref name="nonPublic">nonPublic</paramref> is used; otherwise, only the public properties are returned.</returns>
413       <exception cref="T:System.NotSupportedException">This method is not currently supported in types that are not complete.</exception>
414     </member>
415     <member name="P:System.Reflection.Emit.EnumBuilder.GUID">
416       <summary>Returns the GUID of this enum.</summary>
417       <returns>Read-only. The GUID of this enum.</returns>
418       <exception cref="T:System.NotSupportedException">This method is not currently supported in types that are not complete.</exception>
419     </member>
420     <member name="M:System.Reflection.Emit.EnumBuilder.InvokeMember(System.String,System.Reflection.BindingFlags,System.Reflection.Binder,System.Object,System.Object[],System.Reflection.ParameterModifier[],System.Globalization.CultureInfo,System.String[])">
421       <summary>Invokes the specified member. The method that is to be invoked must be accessible and provide the most specific match with the specified argument list, under the contraints of the specified binder and invocation attributes.</summary>
422       <param name="name">The name of the member to invoke. This can be a constructor, method, property, or field. A suitable invocation attribute must be specified. Note that it is possible to invoke the default member of a class by passing an empty string as the name of the member.</param>
423       <param name="invokeAttr">The invocation attribute. This must be a bit flag from BindingFlags.</param>
424       <param name="binder">An object that enables the binding, coercion of argument types, invocation of members, and retrieval of MemberInfo objects using reflection. If binder is null, the default binder is used. See <see cref="T:System.Reflection.Binder"></see>.</param>
425       <param name="target">The object on which to invoke the specified member. If the member is static, this parameter is ignored.</param>
426       <param name="args">An argument list. This is an array of objects that contains the number, order, and type of the parameters of the member to be invoked. If there are no parameters this should be null.</param>
427       <param name="modifiers">An array of the same length as args with elements that represent the attributes associated with the arguments of the member to be invoked. A parameter has attributes associated with it in the metadata. They are used by various interoperability services. See the metadata specs for details such as this.</param>
428       <param name="culture">An instance of CultureInfo used to govern the coercion of types. If this is null, the CultureInfo for the current thread is used. (Note that this is necessary to, for example, convert a string that represents 1000 to a double value, since 1000 is represented differently by different cultures.)</param>
429       <param name="namedParameters">Each parameter in the namedParameters array gets the value in the corresponding element in the args array. If the length of args is greater than the length of namedParameters, the remaining argument values are passed in order.</param>
430       <returns>Returns the return value of the invoked member.</returns>
431       <exception cref="T:System.NotSupportedException">This method is not currently supported in types that are not complete.</exception>
432     </member>
433     <member name="M:System.Reflection.Emit.EnumBuilder.IsAssignableFrom(System.Reflection.TypeInfo)">
434       <summary>Gets a value that indicates whether a specified <see cref="T:System.Reflection.TypeInfo"></see> object can be assigned to this object.</summary>
435       <param name="typeInfo">The object to test.</param>
436       <returns>true if <paramref name="typeInfo">typeInfo</paramref> can be assigned to this object; otherwise, false.</returns>
437     </member>
438     <member name="P:System.Reflection.Emit.EnumBuilder.IsConstructedGenericType">
439       <summary>Gets a value that indicates whether this object represents a constructed generic type.</summary>
440       <returns>true if this object represents a constructed generic type; otherwise, false.</returns>
441     </member>
442     <member name="M:System.Reflection.Emit.EnumBuilder.IsDefined(System.Type,System.Boolean)">
443       <summary>Checks if the specified custom attribute type is defined.</summary>
444       <param name="attributeType">The Type object to which the custom attributes are applied.</param>
445       <param name="inherit">Specifies whether to search this member's inheritance chain to find the attributes.</param>
446       <returns>true if one or more instance of <paramref name="attributeType">attributeType</paramref> is defined on this member; otherwise, false.</returns>
447       <exception cref="T:System.NotSupportedException">This method is not currently supported in types that are not complete.</exception>
448     </member>
449     <member name="P:System.Reflection.Emit.EnumBuilder.IsEnum">
450       <returns></returns>
451     </member>
452     <member name="P:System.Reflection.Emit.EnumBuilder.IsGenericParameter">
453       <returns></returns>
454     </member>
455     <member name="P:System.Reflection.Emit.EnumBuilder.IsGenericType">
456       <returns></returns>
457     </member>
458     <member name="P:System.Reflection.Emit.EnumBuilder.IsGenericTypeDefinition">
459       <returns></returns>
460     </member>
461     <member name="P:System.Reflection.Emit.EnumBuilder.IsSerializable">
462       <returns></returns>
463     </member>
464     <member name="P:System.Reflection.Emit.EnumBuilder.IsSZArray">
465       <returns></returns>
466     </member>
467     <member name="P:System.Reflection.Emit.EnumBuilder.IsTypeDefinition">
468       <returns></returns>
469     </member>
470     <member name="P:System.Reflection.Emit.EnumBuilder.IsVariableBoundArray">
471       <returns></returns>
472     </member>
473     <member name="M:System.Reflection.Emit.EnumBuilder.MakeArrayType">
474       <summary>Returns a <see cref="T:System.Type"></see> object representing a one-dimensional array of the current type, with a lower bound of zero.</summary>
475       <returns>A <see cref="T:System.Type"></see> object representing a one-dimensional array of the current type, with a lower bound of zero.</returns>
476     </member>
477     <member name="M:System.Reflection.Emit.EnumBuilder.MakeArrayType(System.Int32)">
478       <summary>Returns a <see cref="T:System.Type"></see> object representing an array of the current type, with the specified number of dimensions.</summary>
479       <param name="rank">The number of dimensions for the array. This number must be less than or equal to 32.</param>
480       <returns>An object representing an array of the current type, with the specified number of dimensions.</returns>
481       <exception cref="T:System.IndexOutOfRangeException"><paramref name="rank">rank</paramref> is less than 1.</exception>
482     </member>
483     <member name="M:System.Reflection.Emit.EnumBuilder.MakeByRefType">
484       <summary>Returns a <see cref="T:System.Type"></see> object that represents the current type when passed as a ref parameter (ByRef parameter in Visual Basic).</summary>
485       <returns>A <see cref="T:System.Type"></see> object that represents the current type when passed as a ref parameter (ByRef parameter in Visual Basic).</returns>
486     </member>
487     <member name="M:System.Reflection.Emit.EnumBuilder.MakeGenericType(System.Type[])">
488       <param name="typeArguments"></param>
489       <returns></returns>
490     </member>
491     <member name="M:System.Reflection.Emit.EnumBuilder.MakePointerType">
492       <summary>Returns a <see cref="T:System.Type"></see> object that represents a pointer to the current type.</summary>
493       <returns>A <see cref="T:System.Type"></see> object that represents a pointer to the current type.</returns>
494     </member>
495     <member name="P:System.Reflection.Emit.EnumBuilder.Module">
496       <summary>Retrieves the dynamic module that contains this <see cref="T:System.Reflection.Emit.EnumBuilder"></see> definition.</summary>
497       <returns>Read-only. The dynamic module that contains this <see cref="T:System.Reflection.Emit.EnumBuilder"></see> definition.</returns>
498     </member>
499     <member name="P:System.Reflection.Emit.EnumBuilder.Name">
500       <summary>Returns the name of this enum.</summary>
501       <returns>Read-only. The name of this enum.</returns>
502     </member>
503     <member name="P:System.Reflection.Emit.EnumBuilder.Namespace">
504       <summary>Returns the namespace of this enum.</summary>
505       <returns>Read-only. The namespace of this enum.</returns>
506     </member>
507     <member name="P:System.Reflection.Emit.EnumBuilder.ReflectedType">
508       <summary>Returns the type that was used to obtain this <see cref="T:System.Reflection.Emit.EnumBuilder"></see>.</summary>
509       <returns>Read-only. The type that was used to obtain this <see cref="T:System.Reflection.Emit.EnumBuilder"></see>.</returns>
510     </member>
511     <member name="M:System.Reflection.Emit.EnumBuilder.SetCustomAttribute(System.Reflection.Emit.CustomAttributeBuilder)">
512       <summary>Sets a custom attribute using a custom attribute builder.</summary>
513       <param name="customBuilder">An instance of a helper class to define the custom attribute.</param>
514       <exception cref="T:System.ArgumentNullException"><paramref name="con">con</paramref> is null.</exception>
515     </member>
516     <member name="M:System.Reflection.Emit.EnumBuilder.SetCustomAttribute(System.Reflection.ConstructorInfo,System.Byte[])">
517       <summary>Sets a custom attribute using a specified custom attribute blob.</summary>
518       <param name="con">The constructor for the custom attribute.</param>
519       <param name="binaryAttribute">A byte blob representing the attributes.</param>
520       <exception cref="T:System.ArgumentNullException"><paramref name="con">con</paramref> or <paramref name="binaryAttribute">binaryAttribute</paramref> is null.</exception>
521     </member>
522     <member name="P:System.Reflection.Emit.EnumBuilder.TypeHandle">
523       <summary>Retrieves the internal handle for this enum.</summary>
524       <returns>Read-only. The internal handle for this enum.</returns>
525       <exception cref="T:System.NotSupportedException">This property is not currently supported.</exception>
526     </member>
527     <member name="P:System.Reflection.Emit.EnumBuilder.UnderlyingField">
528       <summary>Returns the underlying field for this enum.</summary>
529       <returns>Read-only. The underlying field for this enum.</returns>
530     </member>
531     <member name="P:System.Reflection.Emit.EnumBuilder.UnderlyingSystemType">
532       <summary>Returns the underlying system type for this enum.</summary>
533       <returns>Read-only. Returns the underlying system type.</returns>
534     </member>
535     <member name="T:System.Reflection.Emit.EventBuilder">
536       <summary>Defines events for a class.</summary>
537     </member>
538     <member name="M:System.Reflection.Emit.EventBuilder.AddOtherMethod(System.Reflection.Emit.MethodBuilder)">
539       <summary>Adds one of the &quot;other&quot; methods associated with this event. &quot;Other&quot; methods are methods other than the &quot;on&quot; and &quot;raise&quot; methods associated with an event. This function can be called many times to add as many &quot;other&quot; methods.</summary>
540       <param name="mdBuilder">A MethodBuilder object that represents the other method.</param>
541       <exception cref="T:System.ArgumentNullException"><paramref name="mdBuilder">mdBuilder</paramref> is null.</exception>
542       <exception cref="T:System.InvalidOperationException"><see cref="M:System.Reflection.Emit.TypeBuilder.CreateType"></see> has been called on the enclosing type.</exception>
543     </member>
544     <member name="M:System.Reflection.Emit.EventBuilder.SetAddOnMethod(System.Reflection.Emit.MethodBuilder)">
545       <summary>Sets the method used to subscribe to this event.</summary>
546       <param name="mdBuilder">A MethodBuilder object that represents the method used to subscribe to this event.</param>
547       <exception cref="T:System.ArgumentNullException"><paramref name="mdBuilder">mdBuilder</paramref> is null.</exception>
548       <exception cref="T:System.InvalidOperationException"><see cref="M:System.Reflection.Emit.TypeBuilder.CreateType"></see> has been called on the enclosing type.</exception>
549     </member>
550     <member name="M:System.Reflection.Emit.EventBuilder.SetCustomAttribute(System.Reflection.Emit.CustomAttributeBuilder)">
551       <summary>Sets a custom attribute using a custom attribute builder.</summary>
552       <param name="customBuilder">An instance of a helper class to describe the custom attribute.</param>
553       <exception cref="T:System.ArgumentNullException"><paramref name="con">con</paramref> is null.</exception>
554       <exception cref="T:System.InvalidOperationException"><see cref="M:System.Reflection.Emit.TypeBuilder.CreateType"></see> has been called on the enclosing type.</exception>
555     </member>
556     <member name="M:System.Reflection.Emit.EventBuilder.SetCustomAttribute(System.Reflection.ConstructorInfo,System.Byte[])">
557       <summary>Set a custom attribute using a specified custom attribute blob.</summary>
558       <param name="con">The constructor for the custom attribute.</param>
559       <param name="binaryAttribute">A byte blob representing the attributes.</param>
560       <exception cref="T:System.ArgumentNullException"><paramref name="con">con</paramref> or <paramref name="binaryAttribute">binaryAttribute</paramref> is null.</exception>
561       <exception cref="T:System.InvalidOperationException"><see cref="M:System.Reflection.Emit.TypeBuilder.CreateType"></see> has been called on the enclosing type.</exception>
562     </member>
563     <member name="M:System.Reflection.Emit.EventBuilder.SetRaiseMethod(System.Reflection.Emit.MethodBuilder)">
564       <summary>Sets the method used to raise this event.</summary>
565       <param name="mdBuilder">A MethodBuilder object that represents the method used to raise this event.</param>
566       <exception cref="T:System.ArgumentNullException"><paramref name="mdBuilder">mdBuilder</paramref> is null.</exception>
567       <exception cref="T:System.InvalidOperationException"><see cref="M:System.Reflection.Emit.TypeBuilder.CreateType"></see> has been called on the enclosing type.</exception>
568     </member>
569     <member name="M:System.Reflection.Emit.EventBuilder.SetRemoveOnMethod(System.Reflection.Emit.MethodBuilder)">
570       <summary>Sets the method used to unsubscribe to this event.</summary>
571       <param name="mdBuilder">A MethodBuilder object that represents the method used to unsubscribe to this event.</param>
572       <exception cref="T:System.ArgumentNullException"><paramref name="mdBuilder">mdBuilder</paramref> is null.</exception>
573       <exception cref="T:System.InvalidOperationException"><see cref="M:System.Reflection.Emit.TypeBuilder.CreateType"></see> has been called on the enclosing type.</exception>
574     </member>
575     <member name="T:System.Reflection.Emit.FieldBuilder">
576       <summary>Defines and represents a field. This class cannot be inherited.</summary>
577     </member>
578     <member name="P:System.Reflection.Emit.FieldBuilder.Attributes">
579       <summary>Indicates the attributes of this field. This property is read-only.</summary>
580       <returns>The attributes of this field.</returns>
581     </member>
582     <member name="P:System.Reflection.Emit.FieldBuilder.DeclaringType">
583       <summary>Indicates a reference to the <see cref="T:System.Type"></see> object for the type that declares this field. This property is read-only.</summary>
584       <returns>A reference to the <see cref="T:System.Type"></see> object for the type that declares this field.</returns>
585     </member>
586     <member name="P:System.Reflection.Emit.FieldBuilder.FieldHandle">
587       <summary>Indicates the internal metadata handle for this field. This property is read-only.</summary>
588       <returns>The internal metadata handle for this field.</returns>
589       <exception cref="T:System.NotSupportedException">This method is not supported.</exception>
590     </member>
591     <member name="P:System.Reflection.Emit.FieldBuilder.FieldType">
592       <summary>Indicates the <see cref="T:System.Type"></see> object that represents the type of this field. This property is read-only.</summary>
593       <returns>The <see cref="T:System.Type"></see> object that represents the type of this field.</returns>
594     </member>
595     <member name="M:System.Reflection.Emit.FieldBuilder.GetCustomAttributes(System.Boolean)">
596       <summary>Returns all the custom attributes defined for this field.</summary>
597       <param name="inherit">Controls inheritance of custom attributes from base classes.</param>
598       <returns>An array of type <see cref="T:System.Object"></see> representing all the custom attributes of the constructor represented by this <see cref="T:System.Reflection.Emit.FieldBuilder"></see> instance.</returns>
599       <exception cref="T:System.NotSupportedException">This method is not supported.</exception>
600     </member>
601     <member name="M:System.Reflection.Emit.FieldBuilder.GetCustomAttributes(System.Type,System.Boolean)">
602       <summary>Returns all the custom attributes defined for this field identified by the given type.</summary>
603       <param name="attributeType">The custom attribute type.</param>
604       <param name="inherit">Controls inheritance of custom attributes from base classes.</param>
605       <returns>An array of type <see cref="T:System.Object"></see> representing all the custom attributes of the constructor represented by this <see cref="T:System.Reflection.Emit.FieldBuilder"></see> instance.</returns>
606       <exception cref="T:System.NotSupportedException">This method is not supported.</exception>
607     </member>
608     <member name="M:System.Reflection.Emit.FieldBuilder.GetValue(System.Object)">
609       <summary>Retrieves the value of the field supported by the given object.</summary>
610       <param name="obj">The object on which to access the field.</param>
611       <returns>An <see cref="T:System.Object"></see> containing the value of the field reflected by this instance.</returns>
612       <exception cref="T:System.NotSupportedException">This method is not supported.</exception>
613     </member>
614     <member name="M:System.Reflection.Emit.FieldBuilder.IsDefined(System.Type,System.Boolean)">
615       <summary>Indicates whether an attribute having the specified type is defined on a field.</summary>
616       <param name="attributeType">The type of the attribute.</param>
617       <param name="inherit">Controls inheritance of custom attributes from base classes.</param>
618       <returns>true if one or more instance of <paramref name="attributeType">attributeType</paramref> is defined on this field; otherwise, false.</returns>
619       <exception cref="T:System.NotSupportedException">This method is not currently supported. Retrieve the field using <see cref="M:System.Type.GetField(System.String,System.Reflection.BindingFlags)"></see> and call <see cref="M:System.Reflection.MemberInfo.IsDefined(System.Type,System.Boolean)"></see> on the returned <see cref="T:System.Reflection.FieldInfo"></see>.</exception>
620     </member>
621     <member name="P:System.Reflection.Emit.FieldBuilder.Name">
622       <summary>Indicates the name of this field. This property is read-only.</summary>
623       <returns>A <see cref="T:System.String"></see> containing the name of this field.</returns>
624     </member>
625     <member name="P:System.Reflection.Emit.FieldBuilder.ReflectedType">
626       <summary>Indicates the reference to the <see cref="T:System.Type"></see> object from which this object was obtained. This property is read-only.</summary>
627       <returns>A reference to the <see cref="T:System.Type"></see> object from which this instance was obtained.</returns>
628     </member>
629     <member name="M:System.Reflection.Emit.FieldBuilder.SetConstant(System.Object)">
630       <summary>Sets the default value of this field.</summary>
631       <param name="defaultValue">The new default value for this field.</param>
632       <exception cref="T:System.InvalidOperationException">The containing type has been created using <see cref="M:System.Reflection.Emit.TypeBuilder.CreateType"></see>.</exception>
633       <exception cref="T:System.ArgumentException">The field is not one of the supported types.   -or-   The type of <paramref name="defaultValue">defaultValue</paramref> does not match the type of the field.   -or-   The field is of type <see cref="T:System.Object"></see> or other reference type, <paramref name="defaultValue">defaultValue</paramref> is not null, and the value cannot be assigned to the reference type.</exception>
634     </member>
635     <member name="M:System.Reflection.Emit.FieldBuilder.SetCustomAttribute(System.Reflection.Emit.CustomAttributeBuilder)">
636       <summary>Sets a custom attribute using a custom attribute builder.</summary>
637       <param name="customBuilder">An instance of a helper class to define the custom attribute.</param>
638       <exception cref="T:System.ArgumentNullException"><paramref name="con">con</paramref> is null.</exception>
639       <exception cref="T:System.InvalidOperationException">The parent type of this field is complete.</exception>
640     </member>
641     <member name="M:System.Reflection.Emit.FieldBuilder.SetCustomAttribute(System.Reflection.ConstructorInfo,System.Byte[])">
642       <summary>Sets a custom attribute using a specified custom attribute blob.</summary>
643       <param name="con">The constructor for the custom attribute.</param>
644       <param name="binaryAttribute">A byte blob representing the attributes.</param>
645       <exception cref="T:System.ArgumentNullException"><paramref name="con">con</paramref> or <paramref name="binaryAttribute">binaryAttribute</paramref> is null.</exception>
646       <exception cref="T:System.InvalidOperationException">The parent type of this field is complete.</exception>
647     </member>
648     <member name="M:System.Reflection.Emit.FieldBuilder.SetOffset(System.Int32)">
649       <summary>Specifies the field layout.</summary>
650       <param name="iOffset">The offset of the field within the type containing this field.</param>
651       <exception cref="T:System.InvalidOperationException">The containing type has been created using <see cref="M:System.Reflection.Emit.TypeBuilder.CreateType"></see>.</exception>
652       <exception cref="T:System.ArgumentException"><paramref name="iOffset">iOffset</paramref> is less than zero.</exception>
653     </member>
654     <member name="M:System.Reflection.Emit.FieldBuilder.SetValue(System.Object,System.Object,System.Reflection.BindingFlags,System.Reflection.Binder,System.Globalization.CultureInfo)">
655       <summary>Sets the value of the field supported by the given object.</summary>
656       <param name="obj">The object on which to access the field.</param>
657       <param name="val">The value to assign to the field.</param>
658       <param name="invokeAttr">A member of IBinder that specifies the type of binding that is desired (for example, IBinder.CreateInstance, IBinder.ExactBinding).</param>
659       <param name="binder">A set of properties and enabling for binding, coercion of argument types, and invocation of members using reflection. If binder is null, then IBinder.DefaultBinding is used.</param>
660       <param name="culture">The software preferences of a particular culture.</param>
661       <exception cref="T:System.NotSupportedException">This method is not supported.</exception>
662     </member>
663     <member name="T:System.Reflection.Emit.GenericTypeParameterBuilder">
664       <summary>Defines and creates generic type parameters for dynamically defined generic types and methods. This class cannot be inherited.</summary>
665     </member>
666     <member name="P:System.Reflection.Emit.GenericTypeParameterBuilder.Assembly">
667       <summary>Gets an <see cref="T:System.Reflection.Assembly"></see> object representing the dynamic assembly that contains the generic type definition the current type parameter belongs to.</summary>
668       <returns>An <see cref="T:System.Reflection.Assembly"></see> object representing the dynamic assembly that contains the generic type definition the current type parameter belongs to.</returns>
669     </member>
670     <member name="P:System.Reflection.Emit.GenericTypeParameterBuilder.AssemblyQualifiedName">
671       <summary>Gets null in all cases.</summary>
672       <returns>A null reference (Nothing in Visual Basic) in all cases.</returns>
673     </member>
674     <member name="P:System.Reflection.Emit.GenericTypeParameterBuilder.Attributes">
675       <returns></returns>
676     </member>
677     <member name="P:System.Reflection.Emit.GenericTypeParameterBuilder.BaseType">
678       <summary>Gets the base type constraint of the current generic type parameter.</summary>
679       <returns>A <see cref="T:System.Type"></see> object that represents the base type constraint of the generic type parameter, or null if the type parameter has no base type constraint.</returns>
680     </member>
681     <member name="P:System.Reflection.Emit.GenericTypeParameterBuilder.ContainsGenericParameters">
682       <summary>Gets true in all cases.</summary>
683       <returns>true in all cases.</returns>
684     </member>
685     <member name="P:System.Reflection.Emit.GenericTypeParameterBuilder.DeclaringMethod">
686       <summary>Gets a <see cref="T:System.Reflection.MethodInfo"></see> that represents the declaring method, if the current <see cref="T:System.Reflection.Emit.GenericTypeParameterBuilder"></see> represents a type parameter of a generic method.</summary>
687       <returns>A <see cref="T:System.Reflection.MethodInfo"></see> that represents the declaring method, if the current <see cref="T:System.Reflection.Emit.GenericTypeParameterBuilder"></see> represents a type parameter of a generic method; otherwise, null.</returns>
688     </member>
689     <member name="P:System.Reflection.Emit.GenericTypeParameterBuilder.DeclaringType">
690       <summary>Gets the generic type definition or generic method definition to which the generic type parameter belongs.</summary>
691       <returns>If the type parameter belongs to a generic type, a <see cref="T:System.Type"></see> object representing that generic type; if the type parameter belongs to a generic method, a <see cref="T:System.Type"></see> object representing that type that declared that generic method.</returns>
692     </member>
693     <member name="M:System.Reflection.Emit.GenericTypeParameterBuilder.Equals(System.Object)">
694       <summary>Tests whether the given object is an instance of EventToken and is equal to the current instance.</summary>
695       <param name="o">The object to be compared with the current instance.</param>
696       <returns>Returns true if <paramref name="o">o</paramref> is an instance of EventToken and equals the current instance; otherwise, false.</returns>
697     </member>
698     <member name="P:System.Reflection.Emit.GenericTypeParameterBuilder.FullName">
699       <summary>Gets null in all cases.</summary>
700       <returns>A null reference (Nothing in Visual Basic) in all cases.</returns>
701     </member>
702     <member name="P:System.Reflection.Emit.GenericTypeParameterBuilder.GenericParameterAttributes">
703       <summary>Gets a combination of <see cref="T:System.Reflection.GenericParameterAttributes"></see> flags that describe the covariance and special constraints of the current generic type parameter.</summary>
704       <returns>A bitwise combination of values that describes the covariance and special constraints of the current generic type parameter.</returns>
705     </member>
706     <member name="P:System.Reflection.Emit.GenericTypeParameterBuilder.GenericParameterPosition">
707       <summary>Gets the position of the type parameter in the type parameter list of the generic type or method that declared the parameter.</summary>
708       <returns>The position of the type parameter in the type parameter list of the generic type or method that declared the parameter.</returns>
709     </member>
710     <member name="P:System.Reflection.Emit.GenericTypeParameterBuilder.GenericTypeArguments">
711       <returns></returns>
712     </member>
713     <member name="M:System.Reflection.Emit.GenericTypeParameterBuilder.GetArrayRank">
714       <returns></returns>
715     </member>
716     <member name="M:System.Reflection.Emit.GenericTypeParameterBuilder.GetConstructors(System.Reflection.BindingFlags)">
717       <summary>Not supported for incomplete generic type parameters.</summary>
718       <param name="bindingAttr">Not supported.</param>
719       <returns>Not supported for incomplete generic type parameters.</returns>
720       <exception cref="T:System.NotSupportedException">In all cases.</exception>
721     </member>
722     <member name="M:System.Reflection.Emit.GenericTypeParameterBuilder.GetCustomAttributes(System.Boolean)">
723       <summary>Not supported for incomplete generic type parameters.</summary>
724       <param name="inherit">Specifies whether to search this member's inheritance chain to find the attributes.</param>
725       <returns>Not supported for incomplete generic type parameters.</returns>
726       <exception cref="T:System.NotSupportedException">In all cases.</exception>
727     </member>
728     <member name="M:System.Reflection.Emit.GenericTypeParameterBuilder.GetCustomAttributes(System.Type,System.Boolean)">
729       <summary>Not supported for incomplete generic type parameters.</summary>
730       <param name="attributeType">The type of attribute to search for. Only attributes that are assignable to this type are returned.</param>
731       <param name="inherit">Specifies whether to search this member's inheritance chain to find the attributes.</param>
732       <returns>Not supported for incomplete generic type parameters.</returns>
733       <exception cref="T:System.NotSupportedException">In all cases.</exception>
734     </member>
735     <member name="M:System.Reflection.Emit.GenericTypeParameterBuilder.GetElementType">
736       <summary>Throws a <see cref="T:System.NotSupportedException"></see> in all cases.</summary>
737       <returns>The type referred to by the current array type, pointer type, or ByRef type; or null if the current type is not an array type, is not a pointer type, and is not passed by reference.</returns>
738       <exception cref="T:System.NotSupportedException">In all cases.</exception>
739     </member>
740     <member name="M:System.Reflection.Emit.GenericTypeParameterBuilder.GetEvent(System.String,System.Reflection.BindingFlags)">
741       <summary>Not supported for incomplete generic type parameters.</summary>
742       <param name="name">Not supported.</param>
743       <param name="bindingAttr">Not supported.</param>
744       <returns>Not supported for incomplete generic type parameters.</returns>
745       <exception cref="T:System.NotSupportedException">In all cases.</exception>
746     </member>
747     <member name="M:System.Reflection.Emit.GenericTypeParameterBuilder.GetEvents">
748       <summary>Not supported for incomplete generic type parameters.</summary>
749       <returns>Not supported for incomplete generic type parameters.</returns>
750       <exception cref="T:System.NotSupportedException">In all cases.</exception>
751     </member>
752     <member name="M:System.Reflection.Emit.GenericTypeParameterBuilder.GetEvents(System.Reflection.BindingFlags)">
753       <summary>Not supported for incomplete generic type parameters.</summary>
754       <param name="bindingAttr">Not supported.</param>
755       <returns>Not supported for incomplete generic type parameters.</returns>
756       <exception cref="T:System.NotSupportedException">In all cases.</exception>
757     </member>
758     <member name="M:System.Reflection.Emit.GenericTypeParameterBuilder.GetField(System.String,System.Reflection.BindingFlags)">
759       <summary>Not supported for incomplete generic type parameters.</summary>
760       <param name="name">Not supported.</param>
761       <param name="bindingAttr">Not supported.</param>
762       <returns>Not supported for incomplete generic type parameters.</returns>
763       <exception cref="T:System.NotSupportedException">In all cases.</exception>
764     </member>
765     <member name="M:System.Reflection.Emit.GenericTypeParameterBuilder.GetFields(System.Reflection.BindingFlags)">
766       <summary>Not supported for incomplete generic type parameters.</summary>
767       <param name="bindingAttr">Not supported.</param>
768       <returns>Not supported for incomplete generic type parameters.</returns>
769       <exception cref="T:System.NotSupportedException">In all cases.</exception>
770     </member>
771     <member name="M:System.Reflection.Emit.GenericTypeParameterBuilder.GetGenericArguments">
772       <summary>Not valid for generic type parameters.</summary>
773       <returns>Not valid for generic type parameters.</returns>
774       <exception cref="T:System.InvalidOperationException">In all cases.</exception>
775     </member>
776     <member name="M:System.Reflection.Emit.GenericTypeParameterBuilder.GetGenericParameterConstraints">
777       <returns></returns>
778     </member>
779     <member name="M:System.Reflection.Emit.GenericTypeParameterBuilder.GetGenericTypeDefinition">
780       <summary>Not valid for generic type parameters.</summary>
781       <returns>Not valid for generic type parameters.</returns>
782       <exception cref="T:System.InvalidOperationException">In all cases.</exception>
783     </member>
784     <member name="M:System.Reflection.Emit.GenericTypeParameterBuilder.GetHashCode">
785       <summary>Returns a 32-bit integer hash code for the current instance.</summary>
786       <returns>A 32-bit integer hash code.</returns>
787     </member>
788     <member name="M:System.Reflection.Emit.GenericTypeParameterBuilder.GetInterface(System.String,System.Boolean)">
789       <summary>Not supported for incomplete generic type parameters.</summary>
790       <param name="name">The name of the interface.</param>
791       <param name="ignoreCase">true to search without regard for case; false to make a case-sensitive search.</param>
792       <returns>Not supported for incomplete generic type parameters.</returns>
793       <exception cref="T:System.NotSupportedException">In all cases.</exception>
794     </member>
795     <member name="M:System.Reflection.Emit.GenericTypeParameterBuilder.GetInterfaceMap(System.Type)">
796       <summary>Not supported for incomplete generic type parameters.</summary>
797       <param name="interfaceType">A <see cref="T:System.Type"></see> object that represents the interface type for which the mapping is to be retrieved.</param>
798       <returns>Not supported for incomplete generic type parameters.</returns>
799       <exception cref="T:System.NotSupportedException">In all cases.</exception>
800     </member>
801     <member name="M:System.Reflection.Emit.GenericTypeParameterBuilder.GetInterfaces">
802       <summary>Not supported for incomplete generic type parameters.</summary>
803       <returns>Not supported for incomplete generic type parameters.</returns>
804       <exception cref="T:System.NotSupportedException">In all cases.</exception>
805     </member>
806     <member name="M:System.Reflection.Emit.GenericTypeParameterBuilder.GetMember(System.String,System.Reflection.MemberTypes,System.Reflection.BindingFlags)">
807       <summary>Not supported for incomplete generic type parameters.</summary>
808       <param name="name">Not supported.</param>
809       <param name="type">Not supported.</param>
810       <param name="bindingAttr">Not supported.</param>
811       <returns>Not supported for incomplete generic type parameters.</returns>
812       <exception cref="T:System.NotSupportedException">In all cases.</exception>
813     </member>
814     <member name="M:System.Reflection.Emit.GenericTypeParameterBuilder.GetMembers(System.Reflection.BindingFlags)">
815       <summary>Not supported for incomplete generic type parameters.</summary>
816       <param name="bindingAttr">Not supported.</param>
817       <returns>Not supported for incomplete generic type parameters.</returns>
818       <exception cref="T:System.NotSupportedException">In all cases.</exception>
819     </member>
820     <member name="M:System.Reflection.Emit.GenericTypeParameterBuilder.GetMethods(System.Reflection.BindingFlags)">
821       <summary>Not supported for incomplete generic type parameters.</summary>
822       <param name="bindingAttr">Not supported.</param>
823       <returns>Not supported for incomplete generic type parameters.</returns>
824       <exception cref="T:System.NotSupportedException">In all cases.</exception>
825     </member>
826     <member name="M:System.Reflection.Emit.GenericTypeParameterBuilder.GetNestedType(System.String,System.Reflection.BindingFlags)">
827       <summary>Not supported for incomplete generic type parameters.</summary>
828       <param name="name">Not supported.</param>
829       <param name="bindingAttr">Not supported.</param>
830       <returns>Not supported for incomplete generic type parameters.</returns>
831       <exception cref="T:System.NotSupportedException">In all cases.</exception>
832     </member>
833     <member name="M:System.Reflection.Emit.GenericTypeParameterBuilder.GetNestedTypes(System.Reflection.BindingFlags)">
834       <summary>Not supported for incomplete generic type parameters.</summary>
835       <param name="bindingAttr">Not supported.</param>
836       <returns>Not supported for incomplete generic type parameters.</returns>
837       <exception cref="T:System.NotSupportedException">In all cases.</exception>
838     </member>
839     <member name="M:System.Reflection.Emit.GenericTypeParameterBuilder.GetProperties(System.Reflection.BindingFlags)">
840       <summary>Not supported for incomplete generic type parameters.</summary>
841       <param name="bindingAttr">Not supported.</param>
842       <returns>Not supported for incomplete generic type parameters.</returns>
843       <exception cref="T:System.NotSupportedException">In all cases.</exception>
844     </member>
845     <member name="P:System.Reflection.Emit.GenericTypeParameterBuilder.GUID">
846       <summary>Not supported for incomplete generic type parameters.</summary>
847       <returns>Not supported for incomplete generic type parameters.</returns>
848       <exception cref="T:System.NotSupportedException">In all cases.</exception>
849     </member>
850     <member name="M:System.Reflection.Emit.GenericTypeParameterBuilder.InvokeMember(System.String,System.Reflection.BindingFlags,System.Reflection.Binder,System.Object,System.Object[],System.Reflection.ParameterModifier[],System.Globalization.CultureInfo,System.String[])">
851       <summary>Not supported for incomplete generic type parameters.</summary>
852       <param name="name">Not supported.</param>
853       <param name="invokeAttr">Not supported.</param>
854       <param name="binder">Not supported.</param>
855       <param name="target">Not supported.</param>
856       <param name="args">Not supported.</param>
857       <param name="modifiers">Not supported.</param>
858       <param name="culture">Not supported.</param>
859       <param name="namedParameters">Not supported.</param>
860       <returns>Not supported for incomplete generic type parameters.</returns>
861       <exception cref="T:System.NotSupportedException">In all cases.</exception>
862     </member>
863     <member name="M:System.Reflection.Emit.GenericTypeParameterBuilder.IsAssignableFrom(System.Reflection.TypeInfo)">
864       <summary>Throws a <see cref="T:System.NotSupportedException"></see> exception in all cases.</summary>
865       <param name="typeInfo">The object to test.</param>
866       <returns>Throws a <see cref="T:System.NotSupportedException"></see> exception in all cases.</returns>
867       <exception cref="T:System.NotSupportedException">In all cases.</exception>
868     </member>
869     <member name="M:System.Reflection.Emit.GenericTypeParameterBuilder.IsAssignableFrom(System.Type)">
870       <summary>Throws a <see cref="T:System.NotSupportedException"></see> exception in all cases.</summary>
871       <param name="c">The object to test.</param>
872       <returns>Throws a <see cref="T:System.NotSupportedException"></see> exception in all cases.</returns>
873       <exception cref="T:System.NotSupportedException">In all cases.</exception>
874     </member>
875     <member name="P:System.Reflection.Emit.GenericTypeParameterBuilder.IsConstructedGenericType">
876       <summary>Gets a value that indicates whether this object represents a constructed generic type.</summary>
877       <returns>true if this object represents a constructed generic type; otherwise, false.</returns>
878     </member>
879     <member name="M:System.Reflection.Emit.GenericTypeParameterBuilder.IsDefined(System.Type,System.Boolean)">
880       <summary>Not supported for incomplete generic type parameters.</summary>
881       <param name="attributeType">Not supported.</param>
882       <param name="inherit">Not supported.</param>
883       <returns>Not supported for incomplete generic type parameters.</returns>
884       <exception cref="T:System.NotSupportedException">In all cases.</exception>
885     </member>
886     <member name="P:System.Reflection.Emit.GenericTypeParameterBuilder.IsEnum">
887       <returns></returns>
888     </member>
889     <member name="P:System.Reflection.Emit.GenericTypeParameterBuilder.IsGenericParameter">
890       <summary>Gets true in all cases.</summary>
891       <returns>true in all cases.</returns>
892     </member>
893     <member name="P:System.Reflection.Emit.GenericTypeParameterBuilder.IsGenericType">
894       <summary>Returns false in all cases.</summary>
895       <returns>false in all cases.</returns>
896     </member>
897     <member name="P:System.Reflection.Emit.GenericTypeParameterBuilder.IsGenericTypeDefinition">
898       <summary>Gets false in all cases.</summary>
899       <returns>false in all cases.</returns>
900     </member>
901     <member name="P:System.Reflection.Emit.GenericTypeParameterBuilder.IsSerializable">
902       <returns></returns>
903     </member>
904     <member name="M:System.Reflection.Emit.GenericTypeParameterBuilder.IsSubclassOf(System.Type)">
905       <summary>Not supported for incomplete generic type parameters.</summary>
906       <param name="c">Not supported.</param>
907       <returns>Not supported for incomplete generic type parameters.</returns>
908       <exception cref="T:System.NotSupportedException">In all cases.</exception>
909     </member>
910     <member name="P:System.Reflection.Emit.GenericTypeParameterBuilder.IsSZArray">
911       <returns></returns>
912     </member>
913     <member name="P:System.Reflection.Emit.GenericTypeParameterBuilder.IsTypeDefinition">
914       <returns></returns>
915     </member>
916     <member name="P:System.Reflection.Emit.GenericTypeParameterBuilder.IsVariableBoundArray">
917       <returns></returns>
918     </member>
919     <member name="M:System.Reflection.Emit.GenericTypeParameterBuilder.MakeArrayType">
920       <summary>Returns the type of a one-dimensional array whose element type is the generic type parameter.</summary>
921       <returns>A <see cref="T:System.Type"></see> object that represents the type of a one-dimensional array whose element type is the generic type parameter.</returns>
922     </member>
923     <member name="M:System.Reflection.Emit.GenericTypeParameterBuilder.MakeArrayType(System.Int32)">
924       <summary>Returns the type of an array whose element type is the generic type parameter, with the specified number of dimensions.</summary>
925       <param name="rank">The number of dimensions for the array.</param>
926       <returns>A <see cref="T:System.Type"></see> object that represents the type of an array whose element type is the generic type parameter, with the specified number of dimensions.</returns>
927       <exception cref="T:System.IndexOutOfRangeException"><paramref name="rank">rank</paramref> is not a valid number of dimensions. For example, its value is less than 1.</exception>
928     </member>
929     <member name="M:System.Reflection.Emit.GenericTypeParameterBuilder.MakeByRefType">
930       <summary>Returns a <see cref="T:System.Type"></see> object that represents the current generic type parameter when passed as a reference parameter.</summary>
931       <returns>A <see cref="T:System.Type"></see> object that represents the current generic type parameter when passed as a reference parameter.</returns>
932     </member>
933     <member name="M:System.Reflection.Emit.GenericTypeParameterBuilder.MakeGenericType(System.Type[])">
934       <summary>Not valid for incomplete generic type parameters.</summary>
935       <param name="typeArguments">An array of type arguments.</param>
936       <returns>This method is invalid for incomplete generic type parameters.</returns>
937       <exception cref="T:System.InvalidOperationException">In all cases.</exception>
938     </member>
939     <member name="M:System.Reflection.Emit.GenericTypeParameterBuilder.MakePointerType">
940       <summary>Returns a <see cref="T:System.Type"></see> object that represents a pointer to the current generic type parameter.</summary>
941       <returns>A <see cref="T:System.Type"></see> object that represents a pointer to the current generic type parameter.</returns>
942     </member>
943     <member name="P:System.Reflection.Emit.GenericTypeParameterBuilder.Module">
944       <summary>Gets the dynamic module that contains the generic type parameter.</summary>
945       <returns>A <see cref="T:System.Reflection.Module"></see> object that represents the dynamic module that contains the generic type parameter.</returns>
946     </member>
947     <member name="P:System.Reflection.Emit.GenericTypeParameterBuilder.Name">
948       <summary>Gets the name of the generic type parameter.</summary>
949       <returns>The name of the generic type parameter.</returns>
950     </member>
951     <member name="P:System.Reflection.Emit.GenericTypeParameterBuilder.Namespace">
952       <summary>Gets null in all cases.</summary>
953       <returns>A null reference (Nothing in Visual Basic) in all cases.</returns>
954     </member>
955     <member name="P:System.Reflection.Emit.GenericTypeParameterBuilder.ReflectedType">
956       <summary>Gets the <see cref="T:System.Type"></see> object that was used to obtain the <see cref="T:System.Reflection.Emit.GenericTypeParameterBuilder"></see>.</summary>
957       <returns>The <see cref="T:System.Type"></see> object that was used to obtain the <see cref="T:System.Reflection.Emit.GenericTypeParameterBuilder"></see>.</returns>
958     </member>
959     <member name="M:System.Reflection.Emit.GenericTypeParameterBuilder.SetBaseTypeConstraint(System.Type)">
960       <summary>Sets the base type that a type must inherit in order to be substituted for the type parameter.</summary>
961       <param name="baseTypeConstraint">The <see cref="T:System.Type"></see> that must be inherited by any type that is to be substituted for the type parameter.</param>
962     </member>
963     <member name="M:System.Reflection.Emit.GenericTypeParameterBuilder.SetCustomAttribute(System.Reflection.Emit.CustomAttributeBuilder)">
964       <summary>Set a custom attribute using a custom attribute builder.</summary>
965       <param name="customBuilder">An instance of a helper class that defines the custom attribute.</param>
966       <exception cref="T:System.ArgumentNullException"><paramref name="customBuilder">customBuilder</paramref> is null.</exception>
967     </member>
968     <member name="M:System.Reflection.Emit.GenericTypeParameterBuilder.SetCustomAttribute(System.Reflection.ConstructorInfo,System.Byte[])">
969       <summary>Sets a custom attribute using a specified custom attribute blob.</summary>
970       <param name="con">The constructor for the custom attribute.</param>
971       <param name="binaryAttribute">A byte blob representing the attribute.</param>
972       <exception cref="T:System.ArgumentNullException"><paramref name="con">con</paramref> is null.   -or-  <paramref name="binaryAttribute">binaryAttribute</paramref> is a null reference.</exception>
973     </member>
974     <member name="M:System.Reflection.Emit.GenericTypeParameterBuilder.SetGenericParameterAttributes(System.Reflection.GenericParameterAttributes)">
975       <summary>Sets the variance characteristics and special constraints of the generic parameter, such as the parameterless constructor constraint.</summary>
976       <param name="genericParameterAttributes">A bitwise combination of <see cref="T:System.Reflection.GenericParameterAttributes"></see> values that represent the variance characteristics and special constraints of the generic type parameter.</param>
977     </member>
978     <member name="M:System.Reflection.Emit.GenericTypeParameterBuilder.SetInterfaceConstraints(System.Type[])">
979       <summary>Sets the interfaces a type must implement in order to be substituted for the type parameter.</summary>
980       <param name="interfaceConstraints">An array of <see cref="T:System.Type"></see> objects that represent the interfaces a type must implement in order to be substituted for the type parameter.</param>
981     </member>
982     <member name="M:System.Reflection.Emit.GenericTypeParameterBuilder.ToString">
983       <summary>Returns a string representation of the current generic type parameter.</summary>
984       <returns>A string that contains the name of the generic type parameter.</returns>
985     </member>
986     <member name="P:System.Reflection.Emit.GenericTypeParameterBuilder.TypeHandle">
987       <summary>Not supported for incomplete generic type parameters.</summary>
988       <returns>Not supported for incomplete generic type parameters.</returns>
989       <exception cref="T:System.NotSupportedException">In all cases.</exception>
990     </member>
991     <member name="P:System.Reflection.Emit.GenericTypeParameterBuilder.UnderlyingSystemType">
992       <summary>Gets the current generic type parameter.</summary>
993       <returns>The current <see cref="T:System.Reflection.Emit.GenericTypeParameterBuilder"></see> object.</returns>
994     </member>
995     <member name="T:System.Reflection.Emit.MethodBuilder">
996       <summary>Defines and represents a method (or constructor) on a dynamic class.</summary>
997     </member>
998     <member name="P:System.Reflection.Emit.MethodBuilder.Attributes">
999       <summary>Retrieves the attributes for this method.</summary>
1000       <returns>Read-only. Retrieves the MethodAttributes for this method.</returns>
1001     </member>
1002     <member name="P:System.Reflection.Emit.MethodBuilder.CallingConvention">
1003       <summary>Returns the calling convention of the method.</summary>
1004       <returns>Read-only. The calling convention of the method.</returns>
1005     </member>
1006     <member name="P:System.Reflection.Emit.MethodBuilder.ContainsGenericParameters">
1007       <summary>Not supported for this type.</summary>
1008       <returns>Not supported.</returns>
1009       <exception cref="T:System.NotSupportedException">The invoked method is not supported in the base class.</exception>
1010     </member>
1011     <member name="P:System.Reflection.Emit.MethodBuilder.DeclaringType">
1012       <summary>Returns the type that declares this method.</summary>
1013       <returns>Read-only. The type that declares this method.</returns>
1014     </member>
1015     <member name="M:System.Reflection.Emit.MethodBuilder.DefineGenericParameters(System.String[])">
1016       <summary>Sets the number of generic type parameters for the current method, specifies their names, and returns an array of <see cref="T:System.Reflection.Emit.GenericTypeParameterBuilder"></see> objects that can be used to define their constraints.</summary>
1017       <param name="names">An array of strings that represent the names of the generic type parameters.</param>
1018       <returns>An array of <see cref="T:System.Reflection.Emit.GenericTypeParameterBuilder"></see> objects representing the type parameters of the generic method.</returns>
1019       <exception cref="T:System.InvalidOperationException">Generic type parameters have already been defined for this method.   -or-   The method has been completed already.   -or-   The <see cref="M:System.Reflection.Emit.MethodBuilder.SetImplementationFlags(System.Reflection.MethodImplAttributes)"></see> method has been called for the current method.</exception>
1020       <exception cref="T:System.ArgumentNullException"><paramref name="names">names</paramref> is null.   -or-   An element of <paramref name="names">names</paramref> is null.</exception>
1021       <exception cref="T:System.ArgumentException"><paramref name="names">names</paramref> is an empty array.</exception>
1022     </member>
1023     <member name="M:System.Reflection.Emit.MethodBuilder.DefineParameter(System.Int32,System.Reflection.ParameterAttributes,System.String)">
1024       <summary>Sets the parameter attributes and the name of a parameter of this method, or of the return value of this method. Returns a ParameterBuilder that can be used to apply custom attributes.</summary>
1025       <param name="position">The position of the parameter in the parameter list. Parameters are indexed beginning with the number 1 for the first parameter; the number 0 represents the return value of the method.</param>
1026       <param name="attributes">The parameter attributes of the parameter.</param>
1027       <param name="strParamName">The name of the parameter. The name can be the null string.</param>
1028       <returns>Returns a ParameterBuilder object that represents a parameter of this method or the return value of this method.</returns>
1029       <exception cref="T:System.ArgumentOutOfRangeException">The method has no parameters.   -or-  <paramref name="position">position</paramref> is less than zero.   -or-  <paramref name="position">position</paramref> is greater than the number of the method's parameters.</exception>
1030       <exception cref="T:System.InvalidOperationException">The containing type was previously created using <see cref="M:System.Reflection.Emit.TypeBuilder.CreateType"></see>.   -or-   For the current method, the <see cref="P:System.Reflection.Emit.MethodBuilder.IsGenericMethod"></see> property is true, but the <see cref="P:System.Reflection.Emit.MethodBuilder.IsGenericMethodDefinition"></see> property is false.</exception>
1031     </member>
1032     <member name="M:System.Reflection.Emit.MethodBuilder.Equals(System.Object)">
1033       <summary>Determines whether the given object is equal to this instance.</summary>
1034       <param name="obj">The object to compare with this MethodBuilder instance.</param>
1035       <returns>true if <paramref name="obj">obj</paramref> is an instance of MethodBuilder and is equal to this object; otherwise, false.</returns>
1036     </member>
1037     <member name="M:System.Reflection.Emit.MethodBuilder.GetBaseDefinition">
1038       <summary>Return the base implementation for a method.</summary>
1039       <returns>The base implementation of this method.</returns>
1040     </member>
1041     <member name="M:System.Reflection.Emit.MethodBuilder.GetCustomAttributes(System.Type,System.Boolean)">
1042       <summary>Returns the custom attributes identified by the given type.</summary>
1043       <param name="attributeType">The custom attribute type.</param>
1044       <param name="inherit">Specifies whether to search this member's inheritance chain to find the custom attributes.</param>
1045       <returns>Returns an array of objects representing the attributes of this method that are of type <paramref name="attributeType">attributeType</paramref>.</returns>
1046       <exception cref="T:System.NotSupportedException">This method is not currently supported. Retrieve the method using <see cref="M:System.Type.GetMethod(System.String,System.Reflection.BindingFlags,System.Reflection.Binder,System.Reflection.CallingConventions,System.Type[],System.Reflection.ParameterModifier[])"></see> and call <see cref="M:System.Reflection.MemberInfo.GetCustomAttributes(System.Boolean)"></see> on the returned <see cref="T:System.Reflection.MethodInfo"></see>.</exception>
1047     </member>
1048     <member name="M:System.Reflection.Emit.MethodBuilder.GetCustomAttributes(System.Boolean)">
1049       <summary>Returns all the custom attributes defined for this method.</summary>
1050       <param name="inherit">Specifies whether to search this member's inheritance chain to find the custom attributes.</param>
1051       <returns>Returns an array of objects representing all the custom attributes of this method.</returns>
1052       <exception cref="T:System.NotSupportedException">This method is not currently supported. Retrieve the method using <see cref="M:System.Type.GetMethod(System.String,System.Reflection.BindingFlags,System.Reflection.Binder,System.Reflection.CallingConventions,System.Type[],System.Reflection.ParameterModifier[])"></see> and call <see cref="M:System.Reflection.MemberInfo.GetCustomAttributes(System.Boolean)"></see> on the returned <see cref="T:System.Reflection.MethodInfo"></see>.</exception>
1053     </member>
1054     <member name="M:System.Reflection.Emit.MethodBuilder.GetGenericArguments">
1055       <summary>Returns an array of <see cref="T:System.Reflection.Emit.GenericTypeParameterBuilder"></see> objects that represent the type parameters of the method, if it is generic.</summary>
1056       <returns>An array of <see cref="T:System.Reflection.Emit.GenericTypeParameterBuilder"></see> objects representing the type parameters, if the method is generic, or null if the method is not generic.</returns>
1057     </member>
1058     <member name="M:System.Reflection.Emit.MethodBuilder.GetGenericMethodDefinition">
1059       <summary>Returns this method.</summary>
1060       <returns>The current instance of <see cref="T:System.Reflection.Emit.MethodBuilder"></see>.</returns>
1061       <exception cref="T:System.InvalidOperationException">The current method is not generic. That is, the <see cref="P:System.Reflection.Emit.MethodBuilder.IsGenericMethod"></see> property returns false.</exception>
1062     </member>
1063     <member name="M:System.Reflection.Emit.MethodBuilder.GetHashCode">
1064       <summary>Gets the hash code for this method.</summary>
1065       <returns>The hash code for this method.</returns>
1066     </member>
1067     <member name="M:System.Reflection.Emit.MethodBuilder.GetILGenerator">
1068       <summary>Returns an ILGenerator for this method with a default Microsoft intermediate language (MSIL) stream size of 64 bytes.</summary>
1069       <returns>Returns an ILGenerator object for this method.</returns>
1070       <exception cref="T:System.InvalidOperationException">The method should not have a body because of its <see cref="T:System.Reflection.MethodAttributes"></see> or <see cref="T:System.Reflection.MethodImplAttributes"></see> flags, for example because it has the <see cref="F:System.Reflection.MethodAttributes.PinvokeImpl"></see> flag.   -or-   The method is a generic method, but not a generic method definition. That is, the <see cref="P:System.Reflection.Emit.MethodBuilder.IsGenericMethod"></see> property is true, but the <see cref="P:System.Reflection.Emit.MethodBuilder.IsGenericMethodDefinition"></see> property is false.</exception>
1071     </member>
1072     <member name="M:System.Reflection.Emit.MethodBuilder.GetILGenerator(System.Int32)">
1073       <summary>Returns an ILGenerator for this method with the specified Microsoft intermediate language (MSIL) stream size.</summary>
1074       <param name="size">The size of the MSIL stream, in bytes.</param>
1075       <returns>Returns an ILGenerator object for this method.</returns>
1076       <exception cref="T:System.InvalidOperationException">The method should not have a body because of its <see cref="T:System.Reflection.MethodAttributes"></see> or <see cref="T:System.Reflection.MethodImplAttributes"></see> flags, for example because it has the <see cref="F:System.Reflection.MethodAttributes.PinvokeImpl"></see> flag.   -or-   The method is a generic method, but not a generic method definition. That is, the <see cref="P:System.Reflection.Emit.MethodBuilder.IsGenericMethod"></see> property is true, but the <see cref="P:System.Reflection.Emit.MethodBuilder.IsGenericMethodDefinition"></see> property is false.</exception>
1077     </member>
1078     <member name="M:System.Reflection.Emit.MethodBuilder.GetMethodImplementationFlags">
1079       <summary>Returns the implementation flags for the method.</summary>
1080       <returns>Returns the implementation flags for the method.</returns>
1081     </member>
1082     <member name="M:System.Reflection.Emit.MethodBuilder.GetParameters">
1083       <summary>Returns the parameters of this method.</summary>
1084       <returns>An array of ParameterInfo objects that represent the parameters of the method.</returns>
1085       <exception cref="T:System.NotSupportedException">This method is not currently supported. Retrieve the method using <see cref="M:System.Type.GetMethod(System.String,System.Reflection.BindingFlags,System.Reflection.Binder,System.Reflection.CallingConventions,System.Type[],System.Reflection.ParameterModifier[])"></see> and call GetParameters on the returned <see cref="T:System.Reflection.MethodInfo"></see>.</exception>
1086     </member>
1087     <member name="P:System.Reflection.Emit.MethodBuilder.InitLocals">
1088       <summary>Gets or sets a Boolean value that specifies whether the local variables in this method are zero initialized. The default value of this property is true.</summary>
1089       <returns>true if the local variables in this method should be zero initialized; otherwise false.</returns>
1090       <exception cref="T:System.InvalidOperationException">For the current method, the <see cref="P:System.Reflection.Emit.MethodBuilder.IsGenericMethod"></see> property is true, but the <see cref="P:System.Reflection.Emit.MethodBuilder.IsGenericMethodDefinition"></see> property is false. (Get or set.)</exception>
1091     </member>
1092     <member name="M:System.Reflection.Emit.MethodBuilder.Invoke(System.Object,System.Reflection.BindingFlags,System.Reflection.Binder,System.Object[],System.Globalization.CultureInfo)">
1093       <summary>Dynamically invokes the method reflected by this instance on the given object, passing along the specified parameters, and under the constraints of the given binder.</summary>
1094       <param name="obj">The object on which to invoke the specified method. If the method is static, this parameter is ignored.</param>
1095       <param name="invokeAttr">This must be a bit flag from <see cref="T:System.Reflection.BindingFlags"></see> : InvokeMethod, NonPublic, and so on.</param>
1096       <param name="binder">An object that enables the binding, coercion of argument types, invocation of members, and retrieval of MemberInfo objects via reflection. If binder is null, the default binder is used. For more details, see <see cref="T:System.Reflection.Binder"></see>.</param>
1097       <param name="parameters">An argument list. This is an array of arguments with the same number, order, and type as the parameters of the method to be invoked. If there are no parameters this should be null.</param>
1098       <param name="culture">An instance of <see cref="T:System.Globalization.CultureInfo"></see> used to govern the coercion of types. If this is null, the <see cref="T:System.Globalization.CultureInfo"></see> for the current thread is used. (Note that this is necessary to, for example, convert a <see cref="T:System.String"></see> that represents 1000 to a <see cref="T:System.Double"></see> value, since 1000 is represented differently by different cultures.)</param>
1099       <returns>Returns an object containing the return value of the invoked method.</returns>
1100       <exception cref="T:System.NotSupportedException">This method is not currently supported. Retrieve the method using <see cref="M:System.Type.GetMethod(System.String,System.Reflection.BindingFlags,System.Reflection.Binder,System.Reflection.CallingConventions,System.Type[],System.Reflection.ParameterModifier[])"></see> and call <see cref="M:System.Type.InvokeMember(System.String,System.Reflection.BindingFlags,System.Reflection.Binder,System.Object,System.Object[],System.Reflection.ParameterModifier[],System.Globalization.CultureInfo,System.String[])"></see> on the returned <see cref="T:System.Reflection.MethodInfo"></see>.</exception>
1101     </member>
1102     <member name="M:System.Reflection.Emit.MethodBuilder.IsDefined(System.Type,System.Boolean)">
1103       <summary>Checks if the specified custom attribute type is defined.</summary>
1104       <param name="attributeType">The custom attribute type.</param>
1105       <param name="inherit">Specifies whether to search this member's inheritance chain to find the custom attributes.</param>
1106       <returns>true if the specified custom attribute type is defined; otherwise, false.</returns>
1107       <exception cref="T:System.NotSupportedException">This method is not currently supported. Retrieve the method using <see cref="M:System.Type.GetMethod(System.String,System.Reflection.BindingFlags,System.Reflection.Binder,System.Reflection.CallingConventions,System.Type[],System.Reflection.ParameterModifier[])"></see> and call <see cref="M:System.Reflection.MemberInfo.IsDefined(System.Type,System.Boolean)"></see> on the returned <see cref="T:System.Reflection.MethodInfo"></see>.</exception>
1108     </member>
1109     <member name="P:System.Reflection.Emit.MethodBuilder.IsGenericMethod">
1110       <summary>Gets a value indicating whether the method is a generic method.</summary>
1111       <returns>true if the method is generic; otherwise, false.</returns>
1112     </member>
1113     <member name="P:System.Reflection.Emit.MethodBuilder.IsGenericMethodDefinition">
1114       <summary>Gets a value indicating whether the current <see cref="T:System.Reflection.Emit.MethodBuilder"></see> object represents the definition of a generic method.</summary>
1115       <returns>true if the current <see cref="T:System.Reflection.Emit.MethodBuilder"></see> object represents the definition of a generic method; otherwise, false.</returns>
1116     </member>
1117     <member name="M:System.Reflection.Emit.MethodBuilder.MakeGenericMethod(System.Type[])">
1118       <summary>Returns a generic method constructed from the current generic method definition using the specified generic type arguments.</summary>
1119       <param name="typeArguments">An array of <see cref="T:System.Type"></see> objects that represent the type arguments for the generic method.</param>
1120       <returns>A <see cref="T:System.Reflection.MethodInfo"></see> representing the generic method constructed from the current generic method definition using the specified generic type arguments.</returns>
1121     </member>
1122     <member name="P:System.Reflection.Emit.MethodBuilder.MethodHandle">
1123       <summary>Retrieves the internal handle for the method. Use this handle to access the underlying metadata handle.</summary>
1124       <returns>Read-only. The internal handle for the method. Use this handle to access the underlying metadata handle.</returns>
1125       <exception cref="T:System.NotSupportedException">This method is not currently supported. Retrieve the method using <see cref="M:System.Type.GetMethod(System.String,System.Reflection.BindingFlags,System.Reflection.Binder,System.Reflection.CallingConventions,System.Type[],System.Reflection.ParameterModifier[])"></see> and call <see cref="P:System.Reflection.MethodBase.MethodHandle"></see> on the returned <see cref="T:System.Reflection.MethodInfo"></see>.</exception>
1126     </member>
1127     <member name="P:System.Reflection.Emit.MethodBuilder.MethodImplementationFlags">
1128       <returns></returns>
1129     </member>
1130     <member name="P:System.Reflection.Emit.MethodBuilder.Module">
1131       <summary>Gets the module in which the current method is being defined.</summary>
1132       <returns>The <see cref="T:System.Reflection.Module"></see> in which the member represented by the current <see cref="T:System.Reflection.MemberInfo"></see> is being defined.</returns>
1133     </member>
1134     <member name="P:System.Reflection.Emit.MethodBuilder.Name">
1135       <summary>Retrieves the name of this method.</summary>
1136       <returns>Read-only. Retrieves a string containing the simple name of this method.</returns>
1137     </member>
1138     <member name="P:System.Reflection.Emit.MethodBuilder.ReflectedType">
1139       <summary>Retrieves the class that was used in reflection to obtain this object.</summary>
1140       <returns>Read-only. The type used to obtain this method.</returns>
1141     </member>
1142     <member name="P:System.Reflection.Emit.MethodBuilder.ReturnParameter">
1143       <summary>Gets a <see cref="T:System.Reflection.ParameterInfo"></see> object that contains information about the return type of the method, such as whether the return type has custom modifiers.</summary>
1144       <returns>A <see cref="T:System.Reflection.ParameterInfo"></see> object that contains information about the return type.</returns>
1145       <exception cref="T:System.InvalidOperationException">The declaring type has not been created.</exception>
1146     </member>
1147     <member name="P:System.Reflection.Emit.MethodBuilder.ReturnType">
1148       <summary>Gets the return type of the method represented by this <see cref="T:System.Reflection.Emit.MethodBuilder"></see>.</summary>
1149       <returns>The return type of the method.</returns>
1150     </member>
1151     <member name="P:System.Reflection.Emit.MethodBuilder.ReturnTypeCustomAttributes">
1152       <summary>Returns the custom attributes of the method's return type.</summary>
1153       <returns>Read-only. The custom attributes of the method's return type.</returns>
1154     </member>
1155     <member name="M:System.Reflection.Emit.MethodBuilder.SetCustomAttribute(System.Reflection.ConstructorInfo,System.Byte[])">
1156       <summary>Sets a custom attribute using a specified custom attribute blob.</summary>
1157       <param name="con">The constructor for the custom attribute.</param>
1158       <param name="binaryAttribute">A byte blob representing the attributes.</param>
1159       <exception cref="T:System.ArgumentNullException"><paramref name="con">con</paramref> or <paramref name="binaryAttribute">binaryAttribute</paramref> is null.</exception>
1160       <exception cref="T:System.InvalidOperationException">For the current method, the <see cref="P:System.Reflection.Emit.MethodBuilder.IsGenericMethod"></see> property is true, but the <see cref="P:System.Reflection.Emit.MethodBuilder.IsGenericMethodDefinition"></see> property is false.</exception>
1161     </member>
1162     <member name="M:System.Reflection.Emit.MethodBuilder.SetCustomAttribute(System.Reflection.Emit.CustomAttributeBuilder)">
1163       <summary>Sets a custom attribute using a custom attribute builder.</summary>
1164       <param name="customBuilder">An instance of a helper class to describe the custom attribute.</param>
1165       <exception cref="T:System.ArgumentNullException"><paramref name="customBuilder">customBuilder</paramref> is null.</exception>
1166       <exception cref="T:System.InvalidOperationException">For the current method, the <see cref="P:System.Reflection.Emit.MethodBuilder.IsGenericMethod"></see> property is true, but the <see cref="P:System.Reflection.Emit.MethodBuilder.IsGenericMethodDefinition"></see> property is false.</exception>
1167     </member>
1168     <member name="M:System.Reflection.Emit.MethodBuilder.SetImplementationFlags(System.Reflection.MethodImplAttributes)">
1169       <summary>Sets the implementation flags for this method.</summary>
1170       <param name="attributes">The implementation flags to set.</param>
1171       <exception cref="T:System.InvalidOperationException">The containing type was previously created using <see cref="M:System.Reflection.Emit.TypeBuilder.CreateType"></see>.   -or-   For the current method, the <see cref="P:System.Reflection.Emit.MethodBuilder.IsGenericMethod"></see> property is true, but the <see cref="P:System.Reflection.Emit.MethodBuilder.IsGenericMethodDefinition"></see> property is false.</exception>
1172     </member>
1173     <member name="M:System.Reflection.Emit.MethodBuilder.SetParameters(System.Type[])">
1174       <summary>Sets the number and types of parameters for a method.</summary>
1175       <param name="parameterTypes">An array of <see cref="T:System.Type"></see> objects representing the parameter types.</param>
1176       <exception cref="T:System.InvalidOperationException">The current method is generic, but is not a generic method definition. That is, the <see cref="P:System.Reflection.Emit.MethodBuilder.IsGenericMethod"></see> property is true, but the <see cref="P:System.Reflection.Emit.MethodBuilder.IsGenericMethodDefinition"></see> property is false.</exception>
1177     </member>
1178     <member name="M:System.Reflection.Emit.MethodBuilder.SetReturnType(System.Type)">
1179       <summary>Sets the return type of the method.</summary>
1180       <param name="returnType">A <see cref="T:System.Type"></see> object that represents the return type of the method.</param>
1181       <exception cref="T:System.InvalidOperationException">The current method is generic, but is not a generic method definition. That is, the <see cref="P:System.Reflection.Emit.MethodBuilder.IsGenericMethod"></see> property is true, but the <see cref="P:System.Reflection.Emit.MethodBuilder.IsGenericMethodDefinition"></see> property is false.</exception>
1182     </member>
1183     <member name="M:System.Reflection.Emit.MethodBuilder.SetSignature(System.Type,System.Type[],System.Type[],System.Type[],System.Type[][],System.Type[][])">
1184       <summary>Sets the method signature, including the return type, the parameter types, and the required and optional custom modifiers of the return type and parameter types.</summary>
1185       <param name="returnType">The return type of the method.</param>
1186       <param name="returnTypeRequiredCustomModifiers">An array of types representing the required custom modifiers, such as <see cref="T:System.Runtime.CompilerServices.IsConst"></see>, for the return type of the method. If the return type has no required custom modifiers, specify null.</param>
1187       <param name="returnTypeOptionalCustomModifiers">An array of types representing the optional custom modifiers, such as <see cref="T:System.Runtime.CompilerServices.IsConst"></see>, for the return type of the method. If the return type has no optional custom modifiers, specify null.</param>
1188       <param name="parameterTypes">The types of the parameters of the method.</param>
1189       <param name="parameterTypeRequiredCustomModifiers">An array of arrays of types. Each array of types represents the required custom modifiers for the corresponding parameter, such as <see cref="T:System.Runtime.CompilerServices.IsConst"></see>. If a particular parameter has no required custom modifiers, specify null instead of an array of types. If none of the parameters have required custom modifiers, specify null instead of an array of arrays.</param>
1190       <param name="parameterTypeOptionalCustomModifiers">An array of arrays of types. Each array of types represents the optional custom modifiers for the corresponding parameter, such as <see cref="T:System.Runtime.CompilerServices.IsConst"></see>. If a particular parameter has no optional custom modifiers, specify null instead of an array of types. If none of the parameters have optional custom modifiers, specify null instead of an array of arrays.</param>
1191       <exception cref="T:System.InvalidOperationException">The current method is generic, but is not a generic method definition. That is, the <see cref="P:System.Reflection.Emit.MethodBuilder.IsGenericMethod"></see> property is true, but the <see cref="P:System.Reflection.Emit.MethodBuilder.IsGenericMethodDefinition"></see> property is false.</exception>
1192     </member>
1193     <member name="M:System.Reflection.Emit.MethodBuilder.ToString">
1194       <summary>Returns this MethodBuilder instance as a string.</summary>
1195       <returns>Returns a string containing the name, attributes, method signature, exceptions, and local signature of this method followed by the current Microsoft intermediate language (MSIL) stream.</returns>
1196     </member>
1197     <member name="T:System.Reflection.Emit.ModuleBuilder">
1198       <summary>Defines and represents a module in a dynamic assembly.</summary>
1199     </member>
1200     <member name="P:System.Reflection.Emit.ModuleBuilder.Assembly">
1201       <summary>Gets the dynamic assembly that defined this instance of <see cref="T:System.Reflection.Emit.ModuleBuilder"></see>.</summary>
1202       <returns>The dynamic assembly that defined the current dynamic module.</returns>
1203     </member>
1204     <member name="M:System.Reflection.Emit.ModuleBuilder.CreateGlobalFunctions">
1205       <summary>Completes the global function definitions and global data definitions for this dynamic module.</summary>
1206       <exception cref="T:System.InvalidOperationException">This method was called previously.</exception>
1207     </member>
1208     <member name="M:System.Reflection.Emit.ModuleBuilder.DefineEnum(System.String,System.Reflection.TypeAttributes,System.Type)">
1209       <summary>Defines an enumeration type that is a value type with a single non-static field called <paramref name="value__">value__</paramref> of the specified type.</summary>
1210       <param name="name">The full path of the enumeration type. name cannot contain embedded nulls.</param>
1211       <param name="visibility">The type attributes for the enumeration. The attributes are any bits defined by <see cref="F:System.Reflection.TypeAttributes.VisibilityMask"></see>.</param>
1212       <param name="underlyingType">The underlying type for the enumeration. This must be a built-in integer type.</param>
1213       <returns>The defined enumeration.</returns>
1214       <exception cref="T:System.ArgumentException">Attributes other than visibility attributes are provided.   -or-   An enumeration with the given name exists in the parent assembly of this module.   -or-   The visibility attributes do not match the scope of the enumeration. For example, <see cref="F:System.Reflection.TypeAttributes.NestedPublic"></see> is specified for <paramref name="visibility">visibility</paramref>, but the enumeration is not a nested type.</exception>
1215       <exception cref="T:System.ArgumentNullException"><paramref name="name">name</paramref> is null.</exception>
1216     </member>
1217     <member name="M:System.Reflection.Emit.ModuleBuilder.DefineGlobalMethod(System.String,System.Reflection.MethodAttributes,System.Type,System.Type[])">
1218       <summary>Defines a global method with the specified name, attributes, return type, and parameter types.</summary>
1219       <param name="name">The name of the method. name cannot contain embedded nulls.</param>
1220       <param name="attributes">The attributes of the method. attributes must include <see cref="F:System.Reflection.MethodAttributes.Static"></see>.</param>
1221       <param name="returnType">The return type of the method.</param>
1222       <param name="parameterTypes">The types of the method's parameters.</param>
1223       <returns>The defined global method.</returns>
1224       <exception cref="T:System.ArgumentException">The method is not static. That is, <paramref name="attributes">attributes</paramref> does not include <see cref="F:System.Reflection.MethodAttributes.Static"></see>.   -or-   The length of <paramref name="name">name</paramref> is zero   -or-   An element in the <see cref="T:System.Type"></see> array is null.</exception>
1225       <exception cref="T:System.ArgumentNullException"><paramref name="name">name</paramref> is null.</exception>
1226       <exception cref="T:System.InvalidOperationException"><see cref="M:System.Reflection.Emit.ModuleBuilder.CreateGlobalFunctions"></see> has been previously called.</exception>
1227     </member>
1228     <member name="M:System.Reflection.Emit.ModuleBuilder.DefineGlobalMethod(System.String,System.Reflection.MethodAttributes,System.Reflection.CallingConventions,System.Type,System.Type[])">
1229       <summary>Defines a global method with the specified name, attributes, calling convention, return type, and parameter types.</summary>
1230       <param name="name">The name of the method. name cannot contain embedded nulls.</param>
1231       <param name="attributes">The attributes of the method. attributes must include <see cref="F:System.Reflection.MethodAttributes.Static"></see>.</param>
1232       <param name="callingConvention">The calling convention for the method.</param>
1233       <param name="returnType">The return type of the method.</param>
1234       <param name="parameterTypes">The types of the method's parameters.</param>
1235       <returns>The defined global method.</returns>
1236       <exception cref="T:System.ArgumentException">The method is not static. That is, <paramref name="attributes">attributes</paramref> does not include <see cref="F:System.Reflection.MethodAttributes.Static"></see>.   -or-   An element in the <see cref="T:System.Type"></see> array is null.</exception>
1237       <exception cref="T:System.ArgumentNullException"><paramref name="name">name</paramref> is null.</exception>
1238       <exception cref="T:System.InvalidOperationException"><see cref="M:System.Reflection.Emit.ModuleBuilder.CreateGlobalFunctions"></see> has been previously called.</exception>
1239     </member>
1240     <member name="M:System.Reflection.Emit.ModuleBuilder.DefineGlobalMethod(System.String,System.Reflection.MethodAttributes,System.Reflection.CallingConventions,System.Type,System.Type[],System.Type[],System.Type[],System.Type[][],System.Type[][])">
1241       <summary>Defines a global method with the specified name, attributes, calling convention, return type, custom modifiers for the return type, parameter types, and custom modifiers for the parameter types.</summary>
1242       <param name="name">The name of the method. name cannot contain embedded null characters.</param>
1243       <param name="attributes">The attributes of the method. attributes must include <see cref="F:System.Reflection.MethodAttributes.Static"></see>.</param>
1244       <param name="callingConvention">The calling convention for the method.</param>
1245       <param name="returnType">The return type of the method.</param>
1246       <param name="requiredReturnTypeCustomModifiers">An array of types representing the required custom modifiers for the return type, such as <see cref="T:System.Runtime.CompilerServices.IsConst"></see> or <see cref="T:System.Runtime.CompilerServices.IsBoxed"></see>. If the return type has no required custom modifiers, specify null.</param>
1247       <param name="optionalReturnTypeCustomModifiers">An array of types representing the optional custom modifiers for the return type, such as <see cref="T:System.Runtime.CompilerServices.IsConst"></see> or <see cref="T:System.Runtime.CompilerServices.IsBoxed"></see>. If the return type has no optional custom modifiers, specify null.</param>
1248       <param name="parameterTypes">The types of the method's parameters.</param>
1249       <param name="requiredParameterTypeCustomModifiers">An array of arrays of types. Each array of types represents the required custom modifiers for the corresponding parameter of the global method. If a particular argument has no required custom modifiers, specify null instead of an array of types. If the global method has no arguments, or if none of the arguments have required custom modifiers, specify null instead of an array of arrays.</param>
1250       <param name="optionalParameterTypeCustomModifiers">An array of arrays of types. Each array of types represents the optional custom modifiers for the corresponding parameter. If a particular argument has no optional custom modifiers, specify null instead of an array of types. If the global method has no arguments, or if none of the arguments have optional custom modifiers, specify null instead of an array of arrays.</param>
1251       <returns>The defined global method.</returns>
1252       <exception cref="T:System.ArgumentException">The method is not static. That is, <paramref name="attributes">attributes</paramref> does not include <see cref="F:System.Reflection.MethodAttributes.Static"></see>.   -or-   An element in the <see cref="T:System.Type"></see> array is null.</exception>
1253       <exception cref="T:System.ArgumentNullException"><paramref name="name">name</paramref> is null.</exception>
1254       <exception cref="T:System.InvalidOperationException">The <see cref="M:System.Reflection.Emit.ModuleBuilder.CreateGlobalFunctions"></see> method has been previously called.</exception>
1255     </member>
1256     <member name="M:System.Reflection.Emit.ModuleBuilder.DefineInitializedData(System.String,System.Byte[],System.Reflection.FieldAttributes)">
1257       <summary>Defines an initialized data field in the .sdata section of the portable executable (PE) file.</summary>
1258       <param name="name">The name used to refer to the data. name cannot contain embedded nulls.</param>
1259       <param name="data">The binary large object (BLOB) of data.</param>
1260       <param name="attributes">The attributes for the field. The default is Static.</param>
1261       <returns>A field to reference the data.</returns>
1262       <exception cref="T:System.ArgumentException">The length of <paramref name="name">name</paramref> is zero.   -or-   The size of <paramref name="data">data</paramref> is less than or equal to zero or greater than or equal to 0x3f0000.</exception>
1263       <exception cref="T:System.ArgumentNullException"><paramref name="name">name</paramref> or <paramref name="data">data</paramref> is null.</exception>
1264       <exception cref="T:System.InvalidOperationException"><see cref="M:System.Reflection.Emit.ModuleBuilder.CreateGlobalFunctions"></see> has been previously called.</exception>
1265     </member>
1266     <member name="M:System.Reflection.Emit.ModuleBuilder.DefineType(System.String,System.Reflection.TypeAttributes,System.Type,System.Reflection.Emit.PackingSize,System.Int32)">
1267       <summary>Constructs a TypeBuilder given the type name, attributes, the type that the defined type extends, the packing size of the defined type, and the total size of the defined type.</summary>
1268       <param name="name">The full path of the type. name cannot contain embedded nulls.</param>
1269       <param name="attr">The attributes of the defined type.</param>
1270       <param name="parent">The type that the defined type extends.</param>
1271       <param name="packingSize">The packing size of the type.</param>
1272       <param name="typesize">The total size of the type.</param>
1273       <returns>A TypeBuilder created with all of the requested attributes.</returns>
1274       <exception cref="T:System.ArgumentException">A type with the given name exists in the parent assembly of this module.   -or-   Nested type attributes are set on a type that is not nested.</exception>
1275       <exception cref="T:System.ArgumentNullException"><paramref name="name">name</paramref> is null.</exception>
1276     </member>
1277     <member name="M:System.Reflection.Emit.ModuleBuilder.DefineType(System.String,System.Reflection.TypeAttributes,System.Type,System.Type[])">
1278       <summary>Constructs a TypeBuilder given the type name, attributes, the type that the defined type extends, and the interfaces that the defined type implements.</summary>
1279       <param name="name">The full path of the type. name cannot contain embedded nulls.</param>
1280       <param name="attr">The attributes to be associated with the type.</param>
1281       <param name="parent">The type that the defined type extends.</param>
1282       <param name="interfaces">The list of interfaces that the type implements.</param>
1283       <returns>A TypeBuilder created with all of the requested attributes.</returns>
1284       <exception cref="T:System.ArgumentException">A type with the given name exists in the parent assembly of this module.   -or-   Nested type attributes are set on a type that is not nested.</exception>
1285       <exception cref="T:System.ArgumentNullException"><paramref name="name">name</paramref> is null.</exception>
1286     </member>
1287     <member name="M:System.Reflection.Emit.ModuleBuilder.DefineType(System.String,System.Reflection.TypeAttributes,System.Type,System.Int32)">
1288       <summary>Constructs a TypeBuilder given the type name, the attributes, the type that the defined type extends, and the total size of the type.</summary>
1289       <param name="name">The full path of the type. name cannot contain embedded nulls.</param>
1290       <param name="attr">The attributes of the defined type.</param>
1291       <param name="parent">The type that the defined type extends.</param>
1292       <param name="typesize">The total size of the type.</param>
1293       <returns>A TypeBuilder object.</returns>
1294       <exception cref="T:System.ArgumentException">A type with the given name exists in the parent assembly of this module.   -or-   Nested type attributes are set on a type that is not nested.</exception>
1295       <exception cref="T:System.ArgumentNullException"><paramref name="name">name</paramref> is null.</exception>
1296     </member>
1297     <member name="M:System.Reflection.Emit.ModuleBuilder.DefineType(System.String,System.Reflection.TypeAttributes,System.Type,System.Reflection.Emit.PackingSize)">
1298       <summary>Constructs a TypeBuilder given the type name, the attributes, the type that the defined type extends, and the packing size of the type.</summary>
1299       <param name="name">The full path of the type. name cannot contain embedded nulls.</param>
1300       <param name="attr">The attributes of the defined type.</param>
1301       <param name="parent">The type that the defined type extends.</param>
1302       <param name="packsize">The packing size of the type.</param>
1303       <returns>A TypeBuilder object.</returns>
1304       <exception cref="T:System.ArgumentException">A type with the given name exists in the parent assembly of this module.   -or-   Nested type attributes are set on a type that is not nested.</exception>
1305       <exception cref="T:System.ArgumentNullException"><paramref name="name">name</paramref> is null.</exception>
1306     </member>
1307     <member name="M:System.Reflection.Emit.ModuleBuilder.DefineType(System.String,System.Reflection.TypeAttributes)">
1308       <summary>Constructs a TypeBuilder given the type name and the type attributes.</summary>
1309       <param name="name">The full path of the type. name cannot contain embedded nulls.</param>
1310       <param name="attr">The attributes of the defined type.</param>
1311       <returns>A TypeBuilder created with all of the requested attributes.</returns>
1312       <exception cref="T:System.ArgumentException">A type with the given name exists in the parent assembly of this module.   -or-   Nested type attributes are set on a type that is not nested.</exception>
1313       <exception cref="T:System.ArgumentNullException"><paramref name="name">name</paramref> is null.</exception>
1314     </member>
1315     <member name="M:System.Reflection.Emit.ModuleBuilder.DefineType(System.String)">
1316       <summary>Constructs a TypeBuilder for a private type with the specified name in this module.</summary>
1317       <param name="name">The full path of the type, including the namespace. name cannot contain embedded nulls.</param>
1318       <returns>A private type with the specified name.</returns>
1319       <exception cref="T:System.ArgumentException">A type with the given name exists in the parent assembly of this module.   -or-   Nested type attributes are set on a type that is not nested.</exception>
1320       <exception cref="T:System.ArgumentNullException"><paramref name="name">name</paramref> is null.</exception>
1321     </member>
1322     <member name="M:System.Reflection.Emit.ModuleBuilder.DefineType(System.String,System.Reflection.TypeAttributes,System.Type)">
1323       <summary>Constructs a TypeBuilder given type name, its attributes, and the type that the defined type extends.</summary>
1324       <param name="name">The full path of the type. name cannot contain embedded nulls.</param>
1325       <param name="attr">The attribute to be associated with the type.</param>
1326       <param name="parent">The type that the defined type extends.</param>
1327       <returns>A TypeBuilder created with all of the requested attributes.</returns>
1328       <exception cref="T:System.ArgumentException">A type with the given name exists in the parent assembly of this module.   -or-   Nested type attributes are set on a type that is not nested.</exception>
1329       <exception cref="T:System.ArgumentNullException"><paramref name="name">name</paramref> is null.</exception>
1330     </member>
1331     <member name="M:System.Reflection.Emit.ModuleBuilder.DefineUninitializedData(System.String,System.Int32,System.Reflection.FieldAttributes)">
1332       <summary>Defines an uninitialized data field in the .sdata section of the portable executable (PE) file.</summary>
1333       <param name="name">The name used to refer to the data. name cannot contain embedded nulls.</param>
1334       <param name="size">The size of the data field.</param>
1335       <param name="attributes">The attributes for the field.</param>
1336       <returns>A field to reference the data.</returns>
1337       <exception cref="T:System.ArgumentException">The length of <paramref name="name">name</paramref> is zero.   -or-  <paramref name="size">size</paramref> is less than or equal to zero, or greater than or equal to 0x003f0000.</exception>
1338       <exception cref="T:System.ArgumentNullException"><paramref name="name">name</paramref> is null.</exception>
1339       <exception cref="T:System.InvalidOperationException"><see cref="M:System.Reflection.Emit.ModuleBuilder.CreateGlobalFunctions"></see> has been previously called.</exception>
1340     </member>
1341     <member name="M:System.Reflection.Emit.ModuleBuilder.Equals(System.Object)">
1342       <summary>Returns a value that indicates whether this instance is equal to the specified object.</summary>
1343       <param name="obj">An object to compare with this instance, or null.</param>
1344       <returns>true if <paramref name="obj">obj</paramref> equals the type and value of this instance; otherwise, false.</returns>
1345     </member>
1346     <member name="P:System.Reflection.Emit.ModuleBuilder.FullyQualifiedName">
1347       <summary>Gets a String representing the fully qualified name and path to this module.</summary>
1348       <returns>The fully qualified module name.</returns>
1349     </member>
1350     <member name="M:System.Reflection.Emit.ModuleBuilder.GetArrayMethod(System.Type,System.String,System.Reflection.CallingConventions,System.Type,System.Type[])">
1351       <summary>Returns the named method on an array class.</summary>
1352       <param name="arrayClass">An array class.</param>
1353       <param name="methodName">The name of a method on the array class.</param>
1354       <param name="callingConvention">The method's calling convention.</param>
1355       <param name="returnType">The return type of the method.</param>
1356       <param name="parameterTypes">The types of the method's parameters.</param>
1357       <returns>The named method on an array class.</returns>
1358       <exception cref="T:System.ArgumentException"><paramref name="arrayClass">arrayClass</paramref> is not an array.</exception>
1359       <exception cref="T:System.ArgumentNullException"><paramref name="arrayClass">arrayClass</paramref> or <paramref name="methodName">methodName</paramref> is null.</exception>
1360     </member>
1361     <member name="M:System.Reflection.Emit.ModuleBuilder.GetHashCode">
1362       <summary>Returns the hash code for this instance.</summary>
1363       <returns>A 32-bit signed integer hash code.</returns>
1364     </member>
1365     <member name="P:System.Reflection.Emit.ModuleBuilder.Name">
1366       <summary>A string that indicates that this is an in-memory module.</summary>
1367       <returns>Text that indicates that this is an in-memory module.</returns>
1368     </member>
1369     <member name="M:System.Reflection.Emit.ModuleBuilder.SetCustomAttribute(System.Reflection.Emit.CustomAttributeBuilder)">
1370       <summary>Applies a custom attribute to this module by using a custom attribute builder.</summary>
1371       <param name="customBuilder">An instance of a helper class that specifies the custom attribute to apply.</param>
1372       <exception cref="T:System.ArgumentNullException"><paramref name="customBuilder">customBuilder</paramref> is null.</exception>
1373     </member>
1374     <member name="M:System.Reflection.Emit.ModuleBuilder.SetCustomAttribute(System.Reflection.ConstructorInfo,System.Byte[])">
1375       <summary>Applies a custom attribute to this module by using a specified binary large object (BLOB) that represents the attribute.</summary>
1376       <param name="con">The constructor for the custom attribute.</param>
1377       <param name="binaryAttribute">A byte BLOB representing the attribute.</param>
1378       <exception cref="T:System.ArgumentNullException"><paramref name="con">con</paramref> or <paramref name="binaryAttribute">binaryAttribute</paramref> is null.</exception>
1379     </member>
1380     <member name="T:System.Reflection.Emit.PropertyBuilder">
1381       <summary>Defines the properties for a type.</summary>
1382     </member>
1383     <member name="M:System.Reflection.Emit.PropertyBuilder.AddOtherMethod(System.Reflection.Emit.MethodBuilder)">
1384       <summary>Adds one of the other methods associated with this property.</summary>
1385       <param name="mdBuilder">A MethodBuilder object that represents the other method.</param>
1386       <exception cref="T:System.ArgumentNullException"><paramref name="mdBuilder">mdBuilder</paramref> is null.</exception>
1387       <exception cref="T:System.InvalidOperationException"><see cref="M:System.Reflection.Emit.TypeBuilder.CreateType"></see> has been called on the enclosing type.</exception>
1388     </member>
1389     <member name="P:System.Reflection.Emit.PropertyBuilder.Attributes">
1390       <summary>Gets the attributes for this property.</summary>
1391       <returns>Attributes of this property.</returns>
1392     </member>
1393     <member name="P:System.Reflection.Emit.PropertyBuilder.CanRead">
1394       <summary>Gets a value indicating whether the property can be read.</summary>
1395       <returns>true if this property can be read; otherwise, false.</returns>
1396     </member>
1397     <member name="P:System.Reflection.Emit.PropertyBuilder.CanWrite">
1398       <summary>Gets a value indicating whether the property can be written to.</summary>
1399       <returns>true if this property can be written to; otherwise, false.</returns>
1400     </member>
1401     <member name="P:System.Reflection.Emit.PropertyBuilder.DeclaringType">
1402       <summary>Gets the class that declares this member.</summary>
1403       <returns>The Type object for the class that declares this member.</returns>
1404     </member>
1405     <member name="M:System.Reflection.Emit.PropertyBuilder.GetAccessors(System.Boolean)">
1406       <summary>Returns an array of the public and non-public get and set accessors on this property.</summary>
1407       <param name="nonPublic">Indicates whether non-public methods should be returned in the MethodInfo array. true if non-public methods are to be included; otherwise, false.</param>
1408       <returns>An array of type MethodInfo containing the matching public or non-public accessors, or an empty array if matching accessors do not exist on this property.</returns>
1409       <exception cref="T:System.NotSupportedException">This method is not supported.</exception>
1410     </member>
1411     <member name="M:System.Reflection.Emit.PropertyBuilder.GetCustomAttributes(System.Boolean)">
1412       <summary>Returns an array of all the custom attributes for this property.</summary>
1413       <param name="inherit">If true, walks up this property's inheritance chain to find the custom attributes</param>
1414       <returns>An array of all the custom attributes.</returns>
1415       <exception cref="T:System.NotSupportedException">This method is not supported.</exception>
1416     </member>
1417     <member name="M:System.Reflection.Emit.PropertyBuilder.GetCustomAttributes(System.Type,System.Boolean)">
1418       <summary>Returns an array of custom attributes identified by <see cref="T:System.Type"></see>.</summary>
1419       <param name="attributeType">An array of custom attributes identified by type.</param>
1420       <param name="inherit">If true, walks up this property's inheritance chain to find the custom attributes.</param>
1421       <returns>An array of custom attributes defined on this reflected member, or null if no attributes are defined on this member.</returns>
1422       <exception cref="T:System.NotSupportedException">This method is not supported.</exception>
1423     </member>
1424     <member name="M:System.Reflection.Emit.PropertyBuilder.GetGetMethod(System.Boolean)">
1425       <summary>Returns the public and non-public get accessor for this property.</summary>
1426       <param name="nonPublic">Indicates whether non-public get accessors should be returned. true if non-public methods are to be included; otherwise, false.</param>
1427       <returns>A MethodInfo object representing the get accessor for this property, if <paramref name="nonPublic">nonPublic</paramref> is true. Returns null if <paramref name="nonPublic">nonPublic</paramref> is false and the get accessor is non-public, or if <paramref name="nonPublic">nonPublic</paramref> is true but no get accessors exist.</returns>
1428     </member>
1429     <member name="M:System.Reflection.Emit.PropertyBuilder.GetIndexParameters">
1430       <summary>Returns an array of all the index parameters for the property.</summary>
1431       <returns>An array of type ParameterInfo containing the parameters for the indexes.</returns>
1432       <exception cref="T:System.NotSupportedException">This method is not supported.</exception>
1433     </member>
1434     <member name="M:System.Reflection.Emit.PropertyBuilder.GetSetMethod(System.Boolean)">
1435       <summary>Returns the set accessor for this property.</summary>
1436       <param name="nonPublic">Indicates whether the accessor should be returned if it is non-public. true if non-public methods are to be included; otherwise, false.</param>
1437       <returns><p sourcefile="System.Reflection.Emit.yml" sourcestartlinenumber="1" sourceendlinenumber="2"><p sourcefile="System.Reflection.Emit.yml" sourcestartlinenumber="1" sourceendlinenumber="1">The property&amp;#39;s <code>Set</code> method, or <code>null</code>, as shown in the following table.  </p>
1438  <table><thead><tr><th> Value  <p>
1439 <p sourcefile="System.Reflection.Emit.yml" sourcestartlinenumber="4" sourceendlinenumber="4"> </th><th> Condition  <p>
1440 <p sourcefile="System.Reflection.Emit.yml" sourcestartlinenumber="6" sourceendlinenumber="6"> </th></tr></thead><tbody><tr><td> A <xref href="System.Reflection.MethodInfo"></xref> object representing the Set method for this property.  <p>
1441 <p sourcefile="System.Reflection.Emit.yml" sourcestartlinenumber="8" sourceendlinenumber="8"> </td><td> The set accessor is public.  <p>
1442 <p sourcefile="System.Reflection.Emit.yml" sourcestartlinenumber="10" sourceendlinenumber="10"> <code data-dev-comment-type="paramref">nonPublic</code> is true and non-public methods can be returned.  </p>
1443 <p sourcefile="System.Reflection.Emit.yml" sourcestartlinenumber="12" sourceendlinenumber="12"> </td></tr><tr><td> null  <p>
1444 <p sourcefile="System.Reflection.Emit.yml" sourcestartlinenumber="14" sourceendlinenumber="14"> </td><td><code data-dev-comment-type="paramref">nonPublic</code> is true, but the property is read-only.  <p>
1445 <p sourcefile="System.Reflection.Emit.yml" sourcestartlinenumber="16" sourceendlinenumber="16"> <code data-dev-comment-type="paramref">nonPublic</code> is false and the set accessor is non-public.  </p>
1446 <p sourcefile="System.Reflection.Emit.yml" sourcestartlinenumber="18" sourceendlinenumber="18"> </td></tr></tbody></table></p>
1447 </returns>
1448     </member>
1449     <member name="M:System.Reflection.Emit.PropertyBuilder.GetValue(System.Object,System.Object[])">
1450       <summary>Gets the value of the indexed property by calling the property's getter method.</summary>
1451       <param name="obj">The object whose property value will be returned.</param>
1452       <param name="index">Optional index values for indexed properties. This value should be null for non-indexed properties.</param>
1453       <returns>The value of the specified indexed property.</returns>
1454       <exception cref="T:System.NotSupportedException">This method is not supported.</exception>
1455     </member>
1456     <member name="M:System.Reflection.Emit.PropertyBuilder.GetValue(System.Object,System.Reflection.BindingFlags,System.Reflection.Binder,System.Object[],System.Globalization.CultureInfo)">
1457       <summary>Gets the value of a property having the specified binding, index, and CultureInfo.</summary>
1458       <param name="obj">The object whose property value will be returned.</param>
1459       <param name="invokeAttr">The invocation attribute. This must be a bit flag from BindingFlags : InvokeMethod, CreateInstance, Static, GetField, SetField, GetProperty, or SetProperty. A suitable invocation attribute must be specified. If a static member is to be invoked, the Static flag of BindingFlags must be set.</param>
1460       <param name="binder">An object that enables the binding, coercion of argument types, invocation of members, and retrieval of MemberInfo objects using reflection. If binder is null, the default binder is used.</param>
1461       <param name="index">Optional index values for indexed properties. This value should be null for non-indexed properties.</param>
1462       <param name="culture">The CultureInfo object that represents the culture for which the resource is to be localized. Note that if the resource is not localized for this culture, the CultureInfo.Parent method will be called successively in search of a match. If this value is null, the CultureInfo is obtained from the CultureInfo.CurrentUICulture property.</param>
1463       <returns>The property value for <paramref name="obj">obj</paramref>.</returns>
1464       <exception cref="T:System.NotSupportedException">This method is not supported.</exception>
1465     </member>
1466     <member name="M:System.Reflection.Emit.PropertyBuilder.IsDefined(System.Type,System.Boolean)">
1467       <summary>Indicates whether one or more instance of <paramref name="attributeType">attributeType</paramref> is defined on this property.</summary>
1468       <param name="attributeType">The Type object to which the custom attributes are applied.</param>
1469       <param name="inherit">Specifies whether to walk up this property's inheritance chain to find the custom attributes.</param>
1470       <returns>true if one or more instance of <paramref name="attributeType">attributeType</paramref> is defined on this property; otherwise false.</returns>
1471       <exception cref="T:System.NotSupportedException">This method is not supported.</exception>
1472     </member>
1473     <member name="P:System.Reflection.Emit.PropertyBuilder.Module">
1474       <summary>Gets the module in which the type that declares the current property is being defined.</summary>
1475       <returns>The <see cref="T:System.Reflection.Module"></see> in which the type that declares the current property is defined.</returns>
1476     </member>
1477     <member name="P:System.Reflection.Emit.PropertyBuilder.Name">
1478       <summary>Gets the name of this member.</summary>
1479       <returns>A <see cref="T:System.String"></see> containing the name of this member.</returns>
1480     </member>
1481     <member name="P:System.Reflection.Emit.PropertyBuilder.PropertyType">
1482       <summary>Gets the type of the field of this property.</summary>
1483       <returns>The type of this property.</returns>
1484     </member>
1485     <member name="P:System.Reflection.Emit.PropertyBuilder.ReflectedType">
1486       <summary>Gets the class object that was used to obtain this instance of MemberInfo.</summary>
1487       <returns>The Type object through which this MemberInfo object was obtained.</returns>
1488     </member>
1489     <member name="M:System.Reflection.Emit.PropertyBuilder.SetConstant(System.Object)">
1490       <summary>Sets the default value of this property.</summary>
1491       <param name="defaultValue">The default value of this property.</param>
1492       <exception cref="T:System.InvalidOperationException"><see cref="M:System.Reflection.Emit.TypeBuilder.CreateType"></see> has been called on the enclosing type.</exception>
1493       <exception cref="T:System.ArgumentException">The property is not one of the supported types.   -or-   The type of <paramref name="defaultValue">defaultValue</paramref> does not match the type of the property.   -or-   The property is of type <see cref="T:System.Object"></see> or other reference type, <paramref name="defaultValue">defaultValue</paramref> is not null, and the value cannot be assigned to the reference type.</exception>
1494     </member>
1495     <member name="M:System.Reflection.Emit.PropertyBuilder.SetCustomAttribute(System.Reflection.Emit.CustomAttributeBuilder)">
1496       <summary>Set a custom attribute using a custom attribute builder.</summary>
1497       <param name="customBuilder">An instance of a helper class to define the custom attribute.</param>
1498       <exception cref="T:System.ArgumentNullException"><paramref name="customBuilder">customBuilder</paramref> is null.</exception>
1499       <exception cref="T:System.InvalidOperationException">if <see cref="M:System.Reflection.Emit.TypeBuilder.CreateType"></see> has been called on the enclosing type.</exception>
1500     </member>
1501     <member name="M:System.Reflection.Emit.PropertyBuilder.SetCustomAttribute(System.Reflection.ConstructorInfo,System.Byte[])">
1502       <summary>Set a custom attribute using a specified custom attribute blob.</summary>
1503       <param name="con">The constructor for the custom attribute.</param>
1504       <param name="binaryAttribute">A byte blob representing the attributes.</param>
1505       <exception cref="T:System.ArgumentNullException"><paramref name="con">con</paramref> or <paramref name="binaryAttribute">binaryAttribute</paramref> is null.</exception>
1506       <exception cref="T:System.InvalidOperationException"><see cref="M:System.Reflection.Emit.TypeBuilder.CreateType"></see> has been called on the enclosing type.</exception>
1507     </member>
1508     <member name="M:System.Reflection.Emit.PropertyBuilder.SetGetMethod(System.Reflection.Emit.MethodBuilder)">
1509       <summary>Sets the method that gets the property value.</summary>
1510       <param name="mdBuilder">A MethodBuilder object that represents the method that gets the property value.</param>
1511       <exception cref="T:System.ArgumentNullException"><paramref name="mdBuilder">mdBuilder</paramref> is null.</exception>
1512       <exception cref="T:System.InvalidOperationException"><see cref="M:System.Reflection.Emit.TypeBuilder.CreateType"></see> has been called on the enclosing type.</exception>
1513     </member>
1514     <member name="M:System.Reflection.Emit.PropertyBuilder.SetSetMethod(System.Reflection.Emit.MethodBuilder)">
1515       <summary>Sets the method that sets the property value.</summary>
1516       <param name="mdBuilder">A MethodBuilder object that represents the method that sets the property value.</param>
1517       <exception cref="T:System.ArgumentNullException"><paramref name="mdBuilder">mdBuilder</paramref> is null.</exception>
1518       <exception cref="T:System.InvalidOperationException"><see cref="M:System.Reflection.Emit.TypeBuilder.CreateType"></see> has been called on the enclosing type.</exception>
1519     </member>
1520     <member name="M:System.Reflection.Emit.PropertyBuilder.SetValue(System.Object,System.Object,System.Object[])">
1521       <summary>Sets the value of the property with optional index values for index properties.</summary>
1522       <param name="obj">The object whose property value will be set.</param>
1523       <param name="value">The new value for this property.</param>
1524       <param name="index">Optional index values for indexed properties. This value should be null for non-indexed properties.</param>
1525       <exception cref="T:System.NotSupportedException">This method is not supported.</exception>
1526     </member>
1527     <member name="M:System.Reflection.Emit.PropertyBuilder.SetValue(System.Object,System.Object,System.Reflection.BindingFlags,System.Reflection.Binder,System.Object[],System.Globalization.CultureInfo)">
1528       <summary>Sets the property value for the given object to the given value.</summary>
1529       <param name="obj">The object whose property value will be returned.</param>
1530       <param name="value">The new value for this property.</param>
1531       <param name="invokeAttr">The invocation attribute. This must be a bit flag from BindingFlags : InvokeMethod, CreateInstance, Static, GetField, SetField, GetProperty, or SetProperty. A suitable invocation attribute must be specified. If a static member is to be invoked, the Static flag of BindingFlags must be set.</param>
1532       <param name="binder">An object that enables the binding, coercion of argument types, invocation of members, and retrieval of MemberInfo objects using reflection. If binder is null, the default binder is used.</param>
1533       <param name="index">Optional index values for indexed properties. This value should be null for non-indexed properties.</param>
1534       <param name="culture">The CultureInfo object that represents the culture for which the resource is to be localized. Note that if the resource is not localized for this culture, the CultureInfo.Parent method will be called successively in search of a match. If this value is null, the CultureInfo is obtained from the CultureInfo.CurrentUICulture property.</param>
1535       <exception cref="T:System.NotSupportedException">This method is not supported.</exception>
1536     </member>
1537     <member name="T:System.Reflection.Emit.TypeBuilder">
1538       <summary>Defines and creates new instances of classes during run time.</summary>
1539     </member>
1540     <member name="M:System.Reflection.Emit.TypeBuilder.AddInterfaceImplementation(System.Type)">
1541       <summary>Adds an interface that this type implements.</summary>
1542       <param name="interfaceType">The interface that this type implements.</param>
1543       <exception cref="T:System.ArgumentNullException"><paramref name="interfaceType">interfaceType</paramref> is null.</exception>
1544       <exception cref="T:System.InvalidOperationException">The type was previously created using <see cref="M:System.Reflection.Emit.TypeBuilder.CreateType"></see>.</exception>
1545     </member>
1546     <member name="P:System.Reflection.Emit.TypeBuilder.Assembly">
1547       <summary>Retrieves the dynamic assembly that contains this type definition.</summary>
1548       <returns>Read-only. Retrieves the dynamic assembly that contains this type definition.</returns>
1549     </member>
1550     <member name="P:System.Reflection.Emit.TypeBuilder.AssemblyQualifiedName">
1551       <summary>Returns the full name of this type qualified by the display name of the assembly.</summary>
1552       <returns>Read-only. The full name of this type qualified by the display name of the assembly.</returns>
1553     </member>
1554     <member name="P:System.Reflection.Emit.TypeBuilder.Attributes">
1555       <returns></returns>
1556     </member>
1557     <member name="P:System.Reflection.Emit.TypeBuilder.BaseType">
1558       <summary>Retrieves the base type of this type.</summary>
1559       <returns>Read-only. Retrieves the base type of this type.</returns>
1560     </member>
1561     <member name="P:System.Reflection.Emit.TypeBuilder.ContainsGenericParameters">
1562       <returns></returns>
1563     </member>
1564     <member name="M:System.Reflection.Emit.TypeBuilder.CreateType">
1565       <summary>Creates a <see cref="T:System.Type"></see> object for the class. After defining fields and methods on the class, CreateType is called in order to load its Type object.</summary>
1566       <returns>Returns the new <see cref="T:System.Type"></see> object for this class.</returns>
1567       <exception cref="T:System.InvalidOperationException">The enclosing type has not been created.   -or-   This type is non-abstract and contains an abstract method.   -or-   This type is not an abstract class or an interface and has a method without a method body.</exception>
1568       <exception cref="T:System.NotSupportedException">The type contains invalid Microsoft intermediate language (MSIL) code.   -or-   The branch target is specified using a 1-byte offset, but the target is at a distance greater than 127 bytes from the branch.</exception>
1569       <exception cref="T:System.TypeLoadException">The type cannot be loaded. For example, it contains a static method that has the calling convention <see cref="F:System.Reflection.CallingConventions.HasThis"></see>.</exception>
1570     </member>
1571     <member name="M:System.Reflection.Emit.TypeBuilder.CreateTypeInfo">
1572       <summary>Gets a <see cref="T:System.Reflection.TypeInfo"></see> object that represents this type.</summary>
1573       <returns>An object that represents this type.</returns>
1574     </member>
1575     <member name="P:System.Reflection.Emit.TypeBuilder.DeclaringMethod">
1576       <summary>Gets the method that declared the current generic type parameter.</summary>
1577       <returns>A <see cref="T:System.Reflection.MethodBase"></see> that represents the method that declared the current type, if the current type is a generic type parameter; otherwise, null.</returns>
1578     </member>
1579     <member name="P:System.Reflection.Emit.TypeBuilder.DeclaringType">
1580       <summary>Returns the type that declared this type.</summary>
1581       <returns>Read-only. The type that declared this type.</returns>
1582     </member>
1583     <member name="M:System.Reflection.Emit.TypeBuilder.DefineConstructor(System.Reflection.MethodAttributes,System.Reflection.CallingConventions,System.Type[])">
1584       <summary>Adds a new constructor to the type, with the given attributes and signature.</summary>
1585       <param name="attributes">The attributes of the constructor.</param>
1586       <param name="callingConvention">The calling convention of the constructor.</param>
1587       <param name="parameterTypes">The parameter types of the constructor.</param>
1588       <returns>The defined constructor.</returns>
1589       <exception cref="T:System.InvalidOperationException">The type was previously created using <see cref="M:System.Reflection.Emit.TypeBuilder.CreateType"></see>.</exception>
1590     </member>
1591     <member name="M:System.Reflection.Emit.TypeBuilder.DefineConstructor(System.Reflection.MethodAttributes,System.Reflection.CallingConventions,System.Type[],System.Type[][],System.Type[][])">
1592       <summary>Adds a new constructor to the type, with the given attributes, signature, and custom modifiers.</summary>
1593       <param name="attributes">The attributes of the constructor.</param>
1594       <param name="callingConvention">The calling convention of the constructor.</param>
1595       <param name="parameterTypes">The parameter types of the constructor.</param>
1596       <param name="requiredCustomModifiers">An array of arrays of types. Each array of types represents the required custom modifiers for the corresponding parameter, such as <see cref="T:System.Runtime.CompilerServices.IsConst"></see>. If a particular parameter has no required custom modifiers, specify null instead of an array of types. If none of the parameters have required custom modifiers, specify null instead of an array of arrays.</param>
1597       <param name="optionalCustomModifiers">An array of arrays of types. Each array of types represents the optional custom modifiers for the corresponding parameter, such as <see cref="T:System.Runtime.CompilerServices.IsConst"></see>. If a particular parameter has no optional custom modifiers, specify null instead of an array of types. If none of the parameters have optional custom modifiers, specify null instead of an array of arrays.</param>
1598       <returns>The defined constructor.</returns>
1599       <exception cref="T:System.ArgumentException">The size of <paramref name="requiredCustomModifiers">requiredCustomModifiers</paramref> or <paramref name="optionalCustomModifiers">optionalCustomModifiers</paramref> does not equal the size of <paramref name="parameterTypes">parameterTypes</paramref>.</exception>
1600       <exception cref="T:System.InvalidOperationException">The type was previously created using <see cref="M:System.Reflection.Emit.TypeBuilder.CreateType"></see>.   -or-   For the current dynamic type, the <see cref="P:System.Reflection.Emit.TypeBuilder.IsGenericType"></see> property is true, but the <see cref="P:System.Reflection.Emit.TypeBuilder.IsGenericTypeDefinition"></see> property is false.</exception>
1601     </member>
1602     <member name="M:System.Reflection.Emit.TypeBuilder.DefineDefaultConstructor(System.Reflection.MethodAttributes)">
1603       <summary>Defines the default constructor. The constructor defined here will simply call the default constructor of the parent.</summary>
1604       <param name="attributes">A MethodAttributes object representing the attributes to be applied to the constructor.</param>
1605       <returns>Returns the constructor.</returns>
1606       <exception cref="T:System.NotSupportedException">The parent type (base type) does not have a default constructor.</exception>
1607       <exception cref="T:System.InvalidOperationException">The type was previously created using <see cref="M:System.Reflection.Emit.TypeBuilder.CreateType"></see>.   -or-   For the current dynamic type, the <see cref="P:System.Reflection.Emit.TypeBuilder.IsGenericType"></see> property is true, but the <see cref="P:System.Reflection.Emit.TypeBuilder.IsGenericTypeDefinition"></see> property is false.</exception>
1608     </member>
1609     <member name="M:System.Reflection.Emit.TypeBuilder.DefineEvent(System.String,System.Reflection.EventAttributes,System.Type)">
1610       <summary>Adds a new event to the type, with the given name, attributes and event type.</summary>
1611       <param name="name">The name of the event. name cannot contain embedded nulls.</param>
1612       <param name="attributes">The attributes of the event.</param>
1613       <param name="eventtype">The type of the event.</param>
1614       <returns>The defined event.</returns>
1615       <exception cref="T:System.ArgumentException">The length of <paramref name="name">name</paramref> is zero.</exception>
1616       <exception cref="T:System.ArgumentNullException"><paramref name="name">name</paramref> is null.   -or-  <paramref name="eventtype">eventtype</paramref> is null.</exception>
1617       <exception cref="T:System.InvalidOperationException">The type was previously created using <see cref="M:System.Reflection.Emit.TypeBuilder.CreateType"></see>.</exception>
1618     </member>
1619     <member name="M:System.Reflection.Emit.TypeBuilder.DefineField(System.String,System.Type,System.Reflection.FieldAttributes)">
1620       <summary>Adds a new field to the type, with the given name, attributes, and field type.</summary>
1621       <param name="fieldName">The name of the field. fieldName cannot contain embedded nulls.</param>
1622       <param name="type">The type of the field</param>
1623       <param name="attributes">The attributes of the field.</param>
1624       <returns>The defined field.</returns>
1625       <exception cref="T:System.ArgumentException">The length of <paramref name="fieldName">fieldName</paramref> is zero.   -or-  <paramref name="type">type</paramref> is System.Void.   -or-   A total size was specified for the parent class of this field.</exception>
1626       <exception cref="T:System.ArgumentNullException"><paramref name="fieldName">fieldName</paramref> is null.</exception>
1627       <exception cref="T:System.InvalidOperationException">The type was previously created using <see cref="M:System.Reflection.Emit.TypeBuilder.CreateType"></see>.</exception>
1628     </member>
1629     <member name="M:System.Reflection.Emit.TypeBuilder.DefineField(System.String,System.Type,System.Type[],System.Type[],System.Reflection.FieldAttributes)">
1630       <summary>Adds a new field to the type, with the given name, attributes, field type, and custom modifiers.</summary>
1631       <param name="fieldName">The name of the field. fieldName cannot contain embedded nulls.</param>
1632       <param name="type">The type of the field</param>
1633       <param name="requiredCustomModifiers">An array of types representing the required custom modifiers for the field, such as <see cref="T:Microsoft.VisualC.IsConstModifier"></see>.</param>
1634       <param name="optionalCustomModifiers">An array of types representing the optional custom modifiers for the field, such as <see cref="T:Microsoft.VisualC.IsConstModifier"></see>.</param>
1635       <param name="attributes">The attributes of the field.</param>
1636       <returns>The defined field.</returns>
1637       <exception cref="T:System.ArgumentException">The length of <paramref name="fieldName">fieldName</paramref> is zero.   -or-  <paramref name="type">type</paramref> is System.Void.   -or-   A total size was specified for the parent class of this field.</exception>
1638       <exception cref="T:System.ArgumentNullException"><paramref name="fieldName">fieldName</paramref> is null.</exception>
1639       <exception cref="T:System.InvalidOperationException">The type was previously created using <see cref="M:System.Reflection.Emit.TypeBuilder.CreateType"></see>.</exception>
1640     </member>
1641     <member name="M:System.Reflection.Emit.TypeBuilder.DefineGenericParameters(System.String[])">
1642       <summary>Defines the generic type parameters for the current type, specifying their number and their names, and returns an array of <see cref="T:System.Reflection.Emit.GenericTypeParameterBuilder"></see> objects that can be used to set their constraints.</summary>
1643       <param name="names">An array of names for the generic type parameters.</param>
1644       <returns>An array of <see cref="T:System.Reflection.Emit.GenericTypeParameterBuilder"></see> objects that can be used to define the constraints of the generic type parameters for the current type.</returns>
1645       <exception cref="T:System.InvalidOperationException">Generic type parameters have already been defined for this type.</exception>
1646       <exception cref="T:System.ArgumentNullException"><paramref name="names">names</paramref> is null.   -or-   An element of <paramref name="names">names</paramref> is null.</exception>
1647       <exception cref="T:System.ArgumentException"><paramref name="names">names</paramref> is an empty array.</exception>
1648     </member>
1649     <member name="M:System.Reflection.Emit.TypeBuilder.DefineInitializedData(System.String,System.Byte[],System.Reflection.FieldAttributes)">
1650       <summary>Defines initialized data field in the .sdata section of the portable executable (PE) file.</summary>
1651       <param name="name">The name used to refer to the data. name cannot contain embedded nulls.</param>
1652       <param name="data">The blob of data.</param>
1653       <param name="attributes">The attributes for the field.</param>
1654       <returns>A field to reference the data.</returns>
1655       <exception cref="T:System.ArgumentException">Length of <paramref name="name">name</paramref> is zero.   -or-   The size of the data is less than or equal to zero, or greater than or equal to 0x3f0000.</exception>
1656       <exception cref="T:System.ArgumentNullException"><paramref name="name">name</paramref> or <paramref name="data">data</paramref> is null.</exception>
1657       <exception cref="T:System.InvalidOperationException"><see cref="M:System.Reflection.Emit.TypeBuilder.CreateType"></see> has been previously called.</exception>
1658     </member>
1659     <member name="M:System.Reflection.Emit.TypeBuilder.DefineMethod(System.String,System.Reflection.MethodAttributes)">
1660       <summary>Adds a new method to the type, with the specified name and method attributes.</summary>
1661       <param name="name">The name of the method. name cannot contain embedded nulls.</param>
1662       <param name="attributes">The attributes of the method.</param>
1663       <returns>A <see cref="T:System.Reflection.Emit.MethodBuilder"></see> representing the newly defined method.</returns>
1664       <exception cref="T:System.ArgumentException">The length of <paramref name="name">name</paramref> is zero.   -or-   The type of the parent of this method is an interface, and this method is not virtual (Overridable in Visual Basic).</exception>
1665       <exception cref="T:System.ArgumentNullException"><paramref name="name">name</paramref> is null.</exception>
1666       <exception cref="T:System.InvalidOperationException">The type was previously created using <see cref="M:System.Reflection.Emit.TypeBuilder.CreateType"></see>.   -or-   For the current dynamic type, the <see cref="P:System.Reflection.Emit.TypeBuilder.IsGenericType"></see> property is true, but the <see cref="P:System.Reflection.Emit.TypeBuilder.IsGenericTypeDefinition"></see> property is false.</exception>
1667     </member>
1668     <member name="M:System.Reflection.Emit.TypeBuilder.DefineMethod(System.String,System.Reflection.MethodAttributes,System.Reflection.CallingConventions)">
1669       <summary>Adds a new method to the type, with the specified name, method attributes, and calling convention.</summary>
1670       <param name="name">The name of the method. name cannot contain embedded nulls.</param>
1671       <param name="attributes">The attributes of the method.</param>
1672       <param name="callingConvention">The calling convention of the method.</param>
1673       <returns>A <see cref="T:System.Reflection.Emit.MethodBuilder"></see> representing the newly defined method.</returns>
1674       <exception cref="T:System.ArgumentException">The length of <paramref name="name">name</paramref> is zero.   -or-   The type of the parent of this method is an interface and this method is not virtual (Overridable in Visual Basic).</exception>
1675       <exception cref="T:System.ArgumentNullException"><paramref name="name">name</paramref> is null.</exception>
1676       <exception cref="T:System.InvalidOperationException">The type was previously created using <see cref="M:System.Reflection.Emit.TypeBuilder.CreateType"></see>.   -or-   For the current dynamic type, the <see cref="P:System.Reflection.Emit.TypeBuilder.IsGenericType"></see> property is true, but the <see cref="P:System.Reflection.Emit.TypeBuilder.IsGenericTypeDefinition"></see> property is false.</exception>
1677     </member>
1678     <member name="M:System.Reflection.Emit.TypeBuilder.DefineMethod(System.String,System.Reflection.MethodAttributes,System.Type,System.Type[])">
1679       <summary>Adds a new method to the type, with the specified name, method attributes, and method signature.</summary>
1680       <param name="name">The name of the method. name cannot contain embedded nulls.</param>
1681       <param name="attributes">The attributes of the method.</param>
1682       <param name="returnType">The return type of the method.</param>
1683       <param name="parameterTypes">The types of the parameters of the method.</param>
1684       <returns>The defined method.</returns>
1685       <exception cref="T:System.ArgumentException">The length of <paramref name="name">name</paramref> is zero.   -or-   The type of the parent of this method is an interface, and this method is not virtual (Overridable in Visual Basic).</exception>
1686       <exception cref="T:System.ArgumentNullException"><paramref name="name">name</paramref> is null.</exception>
1687       <exception cref="T:System.InvalidOperationException">The type was previously created using <see cref="M:System.Reflection.Emit.TypeBuilder.CreateType"></see>.   -or-   For the current dynamic type, the <see cref="P:System.Reflection.Emit.TypeBuilder.IsGenericType"></see> property is true, but the <see cref="P:System.Reflection.Emit.TypeBuilder.IsGenericTypeDefinition"></see> property is false.</exception>
1688     </member>
1689     <member name="M:System.Reflection.Emit.TypeBuilder.DefineMethod(System.String,System.Reflection.MethodAttributes,System.Reflection.CallingConventions,System.Type,System.Type[])">
1690       <summary>Adds a new method to the type, with the specified name, method attributes, calling convention, and method signature.</summary>
1691       <param name="name">The name of the method. name cannot contain embedded nulls.</param>
1692       <param name="attributes">The attributes of the method.</param>
1693       <param name="callingConvention">The calling convention of the method.</param>
1694       <param name="returnType">The return type of the method.</param>
1695       <param name="parameterTypes">The types of the parameters of the method.</param>
1696       <returns>A <see cref="T:System.Reflection.Emit.MethodBuilder"></see> representing the newly defined method.</returns>
1697       <exception cref="T:System.ArgumentException">The length of <paramref name="name">name</paramref> is zero.   -or-   The type of the parent of this method is an interface, and this method is not virtual (Overridable in Visual Basic).</exception>
1698       <exception cref="T:System.ArgumentNullException"><paramref name="name">name</paramref> is null.</exception>
1699       <exception cref="T:System.InvalidOperationException">The type was previously created using <see cref="M:System.Reflection.Emit.TypeBuilder.CreateType"></see>.   -or-   For the current dynamic type, the <see cref="P:System.Reflection.Emit.TypeBuilder.IsGenericType"></see> property is true, but the <see cref="P:System.Reflection.Emit.TypeBuilder.IsGenericTypeDefinition"></see> property is false.</exception>
1700     </member>
1701     <member name="M:System.Reflection.Emit.TypeBuilder.DefineMethod(System.String,System.Reflection.MethodAttributes,System.Reflection.CallingConventions,System.Type,System.Type[],System.Type[],System.Type[],System.Type[][],System.Type[][])">
1702       <summary>Adds a new method to the type, with the specified name, method attributes, calling convention, method signature, and custom modifiers.</summary>
1703       <param name="name">The name of the method. name cannot contain embedded nulls.</param>
1704       <param name="attributes">The attributes of the method.</param>
1705       <param name="callingConvention">The calling convention of the method.</param>
1706       <param name="returnType">The return type of the method.</param>
1707       <param name="returnTypeRequiredCustomModifiers">An array of types representing the required custom modifiers, such as <see cref="T:System.Runtime.CompilerServices.IsConst"></see>, for the return type of the method. If the return type has no required custom modifiers, specify null.</param>
1708       <param name="returnTypeOptionalCustomModifiers">An array of types representing the optional custom modifiers, such as <see cref="T:System.Runtime.CompilerServices.IsConst"></see>, for the return type of the method. If the return type has no optional custom modifiers, specify null.</param>
1709       <param name="parameterTypes">The types of the parameters of the method.</param>
1710       <param name="parameterTypeRequiredCustomModifiers">An array of arrays of types. Each array of types represents the required custom modifiers for the corresponding parameter, such as <see cref="T:System.Runtime.CompilerServices.IsConst"></see>. If a particular parameter has no required custom modifiers, specify null instead of an array of types. If none of the parameters have required custom modifiers, specify null instead of an array of arrays.</param>
1711       <param name="parameterTypeOptionalCustomModifiers">An array of arrays of types. Each array of types represents the optional custom modifiers for the corresponding parameter, such as <see cref="T:System.Runtime.CompilerServices.IsConst"></see>. If a particular parameter has no optional custom modifiers, specify null instead of an array of types. If none of the parameters have optional custom modifiers, specify null instead of an array of arrays.</param>
1712       <returns>A <see cref="T:System.Reflection.Emit.MethodBuilder"></see> object representing the newly added method.</returns>
1713       <exception cref="T:System.ArgumentException">The length of <paramref name="name">name</paramref> is zero.   -or-   The type of the parent of this method is an interface, and this method is not virtual (Overridable in Visual Basic).   -or-   The size of <paramref name="parameterTypeRequiredCustomModifiers">parameterTypeRequiredCustomModifiers</paramref> or <paramref name="parameterTypeOptionalCustomModifiers">parameterTypeOptionalCustomModifiers</paramref> does not equal the size of <paramref name="parameterTypes">parameterTypes</paramref>.</exception>
1714       <exception cref="T:System.ArgumentNullException"><paramref name="name">name</paramref> is null.</exception>
1715       <exception cref="T:System.InvalidOperationException">The type was previously created using <see cref="M:System.Reflection.Emit.TypeBuilder.CreateType"></see>.   -or-   For the current dynamic type, the <see cref="P:System.Reflection.Emit.TypeBuilder.IsGenericType"></see> property is true, but the <see cref="P:System.Reflection.Emit.TypeBuilder.IsGenericTypeDefinition"></see> property is false.</exception>
1716     </member>
1717     <member name="M:System.Reflection.Emit.TypeBuilder.DefineMethodOverride(System.Reflection.MethodInfo,System.Reflection.MethodInfo)">
1718       <summary>Specifies a given method body that implements a given method declaration, potentially with a different name.</summary>
1719       <param name="methodInfoBody">The method body to be used. This should be a MethodBuilder object.</param>
1720       <param name="methodInfoDeclaration">The method whose declaration is to be used.</param>
1721       <exception cref="T:System.ArgumentException"><paramref name="methodInfoBody">methodInfoBody</paramref> does not belong to this class.</exception>
1722       <exception cref="T:System.ArgumentNullException"><paramref name="methodInfoBody">methodInfoBody</paramref> or <paramref name="methodInfoDeclaration">methodInfoDeclaration</paramref> is null.</exception>
1723       <exception cref="T:System.InvalidOperationException">The type was previously created using <see cref="M:System.Reflection.Emit.TypeBuilder.CreateType"></see>.   -or-   The declaring type of <paramref name="methodInfoBody">methodInfoBody</paramref> is not the type represented by this <see cref="T:System.Reflection.Emit.TypeBuilder"></see>.</exception>
1724     </member>
1725     <member name="M:System.Reflection.Emit.TypeBuilder.DefineNestedType(System.String,System.Reflection.TypeAttributes,System.Type,System.Reflection.Emit.PackingSize,System.Int32)">
1726       <summary>Defines a nested type, given its name, attributes, size, and the type that it extends.</summary>
1727       <param name="name">The short name of the type. name cannot contain embedded null values.</param>
1728       <param name="attr">The attributes of the type.</param>
1729       <param name="parent">The type that the nested type extends.</param>
1730       <param name="packSize">The packing size of the type.</param>
1731       <param name="typeSize">The total size of the type.</param>
1732       <returns>The defined nested type.</returns>
1733     </member>
1734     <member name="M:System.Reflection.Emit.TypeBuilder.DefineNestedType(System.String,System.Reflection.TypeAttributes,System.Type,System.Type[])">
1735       <summary>Defines a nested type, given its name, attributes, the type that it extends, and the interfaces that it implements.</summary>
1736       <param name="name">The short name of the type. name cannot contain embedded nulls.</param>
1737       <param name="attr">The attributes of the type.</param>
1738       <param name="parent">The type that the nested type extends.</param>
1739       <param name="interfaces">The interfaces that the nested type implements.</param>
1740       <returns>The defined nested type.</returns>
1741       <exception cref="T:System.ArgumentException">The nested attribute is not specified.   -or-   This type is sealed.   -or-   This type is an array.   -or-   This type is an interface, but the nested type is not an interface.   -or-   The length of <paramref name="name">name</paramref> is zero or greater than 1023.   -or-   This operation would create a type with a duplicate <see cref="P:System.Reflection.Emit.TypeBuilder.FullName"></see> in the current assembly.</exception>
1742       <exception cref="T:System.ArgumentNullException"><paramref name="name">name</paramref> is null.   -or-   An element of the <paramref name="interfaces">interfaces</paramref> array is null.</exception>
1743     </member>
1744     <member name="M:System.Reflection.Emit.TypeBuilder.DefineNestedType(System.String,System.Reflection.TypeAttributes,System.Type,System.Int32)">
1745       <summary>Defines a nested type, given its name, attributes, the total size of the type, and the type that it extends.</summary>
1746       <param name="name">The short name of the type. name cannot contain embedded nulls.</param>
1747       <param name="attr">The attributes of the type.</param>
1748       <param name="parent">The type that the nested type extends.</param>
1749       <param name="typeSize">The total size of the type.</param>
1750       <returns>The defined nested type.</returns>
1751       <exception cref="T:System.ArgumentException">The nested attribute is not specified.   -or-   This type is sealed.   -or-   This type is an array.   -or-   This type is an interface, but the nested type is not an interface.   -or-   The length of <paramref name="name">name</paramref> is zero or greater than 1023.   -or-   This operation would create a type with a duplicate <see cref="P:System.Reflection.Emit.TypeBuilder.FullName"></see> in the current assembly.</exception>
1752       <exception cref="T:System.ArgumentNullException"><paramref name="name">name</paramref> is null.</exception>
1753     </member>
1754     <member name="M:System.Reflection.Emit.TypeBuilder.DefineNestedType(System.String,System.Reflection.TypeAttributes,System.Type,System.Reflection.Emit.PackingSize)">
1755       <summary>Defines a nested type, given its name, attributes, the type that it extends, and the packing size.</summary>
1756       <param name="name">The short name of the type. name cannot contain embedded nulls.</param>
1757       <param name="attr">The attributes of the type.</param>
1758       <param name="parent">The type that the nested type extends.</param>
1759       <param name="packSize">The packing size of the type.</param>
1760       <returns>The defined nested type.</returns>
1761       <exception cref="T:System.ArgumentException">The nested attribute is not specified.   -or-   This type is sealed.   -or-   This type is an array.   -or-   This type is an interface, but the nested type is not an interface.   -or-   The length of <paramref name="name">name</paramref> is zero or greater than 1023.   -or-   This operation would create a type with a duplicate <see cref="P:System.Reflection.Emit.TypeBuilder.FullName"></see> in the current assembly.</exception>
1762       <exception cref="T:System.ArgumentNullException"><paramref name="name">name</paramref> is null.</exception>
1763     </member>
1764     <member name="M:System.Reflection.Emit.TypeBuilder.DefineNestedType(System.String,System.Reflection.TypeAttributes)">
1765       <summary>Defines a nested type, given its name and attributes.</summary>
1766       <param name="name">The short name of the type. name cannot contain embedded nulls.</param>
1767       <param name="attr">The attributes of the type.</param>
1768       <returns>The defined nested type.</returns>
1769       <exception cref="T:System.ArgumentException">The nested attribute is not specified.   -or-   This type is sealed.   -or-   This type is an array.   -or-   This type is an interface, but the nested type is not an interface.   -or-   The length of <paramref name="name">name</paramref> is zero or greater than 1023.   -or-   This operation would create a type with a duplicate <see cref="P:System.Reflection.Emit.TypeBuilder.FullName"></see> in the current assembly.</exception>
1770       <exception cref="T:System.ArgumentNullException"><paramref name="name">name</paramref> is null.</exception>
1771     </member>
1772     <member name="M:System.Reflection.Emit.TypeBuilder.DefineNestedType(System.String)">
1773       <summary>Defines a nested type, given its name.</summary>
1774       <param name="name">The short name of the type. name cannot contain embedded nulls.</param>
1775       <returns>The defined nested type.</returns>
1776       <exception cref="T:System.ArgumentException">Length of <paramref name="name">name</paramref> is zero or greater than 1023.   -or-   This operation would create a type with a duplicate <see cref="P:System.Reflection.Emit.TypeBuilder.FullName"></see> in the current assembly.</exception>
1777       <exception cref="T:System.ArgumentNullException"><paramref name="name">name</paramref> is null.</exception>
1778     </member>
1779     <member name="M:System.Reflection.Emit.TypeBuilder.DefineNestedType(System.String,System.Reflection.TypeAttributes,System.Type)">
1780       <summary>Defines a nested type, given its name, attributes, and the type that it extends.</summary>
1781       <param name="name">The short name of the type. name cannot contain embedded nulls.</param>
1782       <param name="attr">The attributes of the type.</param>
1783       <param name="parent">The type that the nested type extends.</param>
1784       <returns>The defined nested type.</returns>
1785       <exception cref="T:System.ArgumentException">The nested attribute is not specified.   -or-   This type is sealed.   -or-   This type is an array.   -or-   This type is an interface, but the nested type is not an interface.   -or-   The length of <paramref name="name">name</paramref> is zero or greater than 1023.   -or-   This operation would create a type with a duplicate <see cref="P:System.Reflection.Emit.TypeBuilder.FullName"></see> in the current assembly.</exception>
1786       <exception cref="T:System.ArgumentNullException"><paramref name="name">name</paramref> is null.</exception>
1787     </member>
1788     <member name="M:System.Reflection.Emit.TypeBuilder.DefineProperty(System.String,System.Reflection.PropertyAttributes,System.Type,System.Type[])">
1789       <summary>Adds a new property to the type, with the given name and property signature.</summary>
1790       <param name="name">The name of the property. name cannot contain embedded nulls.</param>
1791       <param name="attributes">The attributes of the property.</param>
1792       <param name="returnType">The return type of the property.</param>
1793       <param name="parameterTypes">The types of the parameters of the property.</param>
1794       <returns>The defined property.</returns>
1795       <exception cref="T:System.ArgumentException">The length of <paramref name="name">name</paramref> is zero.</exception>
1796       <exception cref="T:System.ArgumentNullException"><paramref name="name">name</paramref> is null.   -or-   Any of the elements of the <paramref name="parameterTypes">parameterTypes</paramref> array is null.</exception>
1797       <exception cref="T:System.InvalidOperationException">The type was previously created using <see cref="M:System.Reflection.Emit.TypeBuilder.CreateType"></see>.</exception>
1798     </member>
1799     <member name="M:System.Reflection.Emit.TypeBuilder.DefineProperty(System.String,System.Reflection.PropertyAttributes,System.Reflection.CallingConventions,System.Type,System.Type[])">
1800       <summary>Adds a new property to the type, with the given name, attributes, calling convention, and property signature.</summary>
1801       <param name="name">The name of the property. name cannot contain embedded nulls.</param>
1802       <param name="attributes">The attributes of the property.</param>
1803       <param name="callingConvention">The calling convention of the property accessors.</param>
1804       <param name="returnType">The return type of the property.</param>
1805       <param name="parameterTypes">The types of the parameters of the property.</param>
1806       <returns>The defined property.</returns>
1807       <exception cref="T:System.ArgumentException">The length of <paramref name="name">name</paramref> is zero.</exception>
1808       <exception cref="T:System.ArgumentNullException"><paramref name="name">name</paramref> is null.   -or-   Any of the elements of the <paramref name="parameterTypes">parameterTypes</paramref> array is null.</exception>
1809       <exception cref="T:System.InvalidOperationException">The type was previously created using <see cref="M:System.Reflection.Emit.TypeBuilder.CreateType"></see>.</exception>
1810     </member>
1811     <member name="M:System.Reflection.Emit.TypeBuilder.DefineProperty(System.String,System.Reflection.PropertyAttributes,System.Type,System.Type[],System.Type[],System.Type[],System.Type[][],System.Type[][])">
1812       <summary>Adds a new property to the type, with the given name, property signature, and custom modifiers.</summary>
1813       <param name="name">The name of the property. name cannot contain embedded nulls.</param>
1814       <param name="attributes">The attributes of the property.</param>
1815       <param name="returnType">The return type of the property.</param>
1816       <param name="returnTypeRequiredCustomModifiers">An array of types representing the required custom modifiers, such as <see cref="T:System.Runtime.CompilerServices.IsConst"></see>, for the return type of the property. If the return type has no required custom modifiers, specify null.</param>
1817       <param name="returnTypeOptionalCustomModifiers">An array of types representing the optional custom modifiers, such as <see cref="T:System.Runtime.CompilerServices.IsConst"></see>, for the return type of the property. If the return type has no optional custom modifiers, specify null.</param>
1818       <param name="parameterTypes">The types of the parameters of the property.</param>
1819       <param name="parameterTypeRequiredCustomModifiers">An array of arrays of types. Each array of types represents the required custom modifiers for the corresponding parameter, such as <see cref="T:System.Runtime.CompilerServices.IsConst"></see>. If a particular parameter has no required custom modifiers, specify null instead of an array of types. If none of the parameters have required custom modifiers, specify null instead of an array of arrays.</param>
1820       <param name="parameterTypeOptionalCustomModifiers">An array of arrays of types. Each array of types represents the optional custom modifiers for the corresponding parameter, such as <see cref="T:System.Runtime.CompilerServices.IsConst"></see>. If a particular parameter has no optional custom modifiers, specify null instead of an array of types. If none of the parameters have optional custom modifiers, specify null instead of an array of arrays.</param>
1821       <returns>The defined property.</returns>
1822       <exception cref="T:System.ArgumentException">The length of <paramref name="name">name</paramref> is zero.</exception>
1823       <exception cref="T:System.ArgumentNullException"><paramref name="name">name</paramref> is null -or-   Any of the elements of the <paramref name="parameterTypes">parameterTypes</paramref> array is null</exception>
1824       <exception cref="T:System.InvalidOperationException">The type was previously created using <see cref="M:System.Reflection.Emit.TypeBuilder.CreateType"></see>.</exception>
1825     </member>
1826     <member name="M:System.Reflection.Emit.TypeBuilder.DefineProperty(System.String,System.Reflection.PropertyAttributes,System.Reflection.CallingConventions,System.Type,System.Type[],System.Type[],System.Type[],System.Type[][],System.Type[][])">
1827       <summary>Adds a new property to the type, with the given name, calling convention, property signature, and custom modifiers.</summary>
1828       <param name="name">The name of the property. name cannot contain embedded nulls.</param>
1829       <param name="attributes">The attributes of the property.</param>
1830       <param name="callingConvention">The calling convention of the property accessors.</param>
1831       <param name="returnType">The return type of the property.</param>
1832       <param name="returnTypeRequiredCustomModifiers">An array of types representing the required custom modifiers, such as <see cref="T:System.Runtime.CompilerServices.IsConst"></see>, for the return type of the property. If the return type has no required custom modifiers, specify null.</param>
1833       <param name="returnTypeOptionalCustomModifiers">An array of types representing the optional custom modifiers, such as <see cref="T:System.Runtime.CompilerServices.IsConst"></see>, for the return type of the property. If the return type has no optional custom modifiers, specify null.</param>
1834       <param name="parameterTypes">The types of the parameters of the property.</param>
1835       <param name="parameterTypeRequiredCustomModifiers">An array of arrays of types. Each array of types represents the required custom modifiers for the corresponding parameter, such as <see cref="T:System.Runtime.CompilerServices.IsConst"></see>. If a particular parameter has no required custom modifiers, specify null instead of an array of types. If none of the parameters have required custom modifiers, specify null instead of an array of arrays.</param>
1836       <param name="parameterTypeOptionalCustomModifiers">An array of arrays of types. Each array of types represents the optional custom modifiers for the corresponding parameter, such as <see cref="T:System.Runtime.CompilerServices.IsConst"></see>. If a particular parameter has no optional custom modifiers, specify null instead of an array of types. If none of the parameters have optional custom modifiers, specify null instead of an array of arrays.</param>
1837       <returns>The defined property.</returns>
1838       <exception cref="T:System.ArgumentException">The length of <paramref name="name">name</paramref> is zero.</exception>
1839       <exception cref="T:System.ArgumentNullException"><paramref name="name">name</paramref> is null.   -or-   Any of the elements of the <paramref name="parameterTypes">parameterTypes</paramref> array is null.</exception>
1840       <exception cref="T:System.InvalidOperationException">The type was previously created using <see cref="M:System.Reflection.Emit.TypeBuilder.CreateType"></see>.</exception>
1841     </member>
1842     <member name="M:System.Reflection.Emit.TypeBuilder.DefineTypeInitializer">
1843       <summary>Defines the initializer for this type.</summary>
1844       <returns>Returns a type initializer.</returns>
1845       <exception cref="T:System.InvalidOperationException">The containing type has been previously created using <see cref="M:System.Reflection.Emit.TypeBuilder.CreateType"></see>.</exception>
1846     </member>
1847     <member name="M:System.Reflection.Emit.TypeBuilder.DefineUninitializedData(System.String,System.Int32,System.Reflection.FieldAttributes)">
1848       <summary>Defines an uninitialized data field in the .sdata section of the portable executable (PE) file.</summary>
1849       <param name="name">The name used to refer to the data. name cannot contain embedded nulls.</param>
1850       <param name="size">The size of the data field.</param>
1851       <param name="attributes">The attributes for the field.</param>
1852       <returns>A field to reference the data.</returns>
1853       <exception cref="T:System.ArgumentException">Length of <paramref name="name">name</paramref> is zero.   -or-  <paramref name="size">size</paramref> is less than or equal to zero, or greater than or equal to 0x003f0000.</exception>
1854       <exception cref="T:System.ArgumentNullException"><paramref name="name">name</paramref> is null.</exception>
1855       <exception cref="T:System.InvalidOperationException">The type was previously created using <see cref="M:System.Reflection.Emit.TypeBuilder.CreateType"></see>.</exception>
1856     </member>
1857     <member name="P:System.Reflection.Emit.TypeBuilder.FullName">
1858       <summary>Retrieves the full path of this type.</summary>
1859       <returns>Read-only. Retrieves the full path of this type.</returns>
1860     </member>
1861     <member name="P:System.Reflection.Emit.TypeBuilder.GenericParameterAttributes">
1862       <summary>Gets a value that indicates the covariance and special constraints of the current generic type parameter.</summary>
1863       <returns>A bitwise combination of <see cref="T:System.Reflection.GenericParameterAttributes"></see> values that describes the covariance and special constraints of the current generic type parameter.</returns>
1864     </member>
1865     <member name="P:System.Reflection.Emit.TypeBuilder.GenericParameterPosition">
1866       <summary>Gets the position of a type parameter in the type parameter list of the generic type that declared the parameter.</summary>
1867       <returns>If the current <see cref="T:System.Reflection.Emit.TypeBuilder"></see> object represents a generic type parameter, the position of the type parameter in the type parameter list of the generic type that declared the parameter; otherwise, undefined.</returns>
1868     </member>
1869     <member name="P:System.Reflection.Emit.TypeBuilder.GenericTypeArguments">
1870       <returns></returns>
1871     </member>
1872     <member name="M:System.Reflection.Emit.TypeBuilder.GetArrayRank">
1873       <returns></returns>
1874     </member>
1875     <member name="M:System.Reflection.Emit.TypeBuilder.GetConstructor(System.Type,System.Reflection.ConstructorInfo)">
1876       <summary>Returns the constructor of the specified constructed generic type that corresponds to the specified constructor of the generic type definition.</summary>
1877       <param name="type">The constructed generic type whose constructor is returned.</param>
1878       <param name="constructor">A constructor on the generic type definition of type, which specifies which constructor of type to return.</param>
1879       <returns>A <see cref="T:System.Reflection.ConstructorInfo"></see> object that represents the constructor of <paramref name="type">type</paramref> corresponding to <paramref name="constructor">constructor</paramref>, which specifies a constructor belonging to the generic type definition of <paramref name="type">type</paramref>.</returns>
1880       <exception cref="T:System.ArgumentException"><paramref name="type">type</paramref> does not represent a generic type.   -or-  <paramref name="type">type</paramref> is not of type <see cref="T:System.Reflection.Emit.TypeBuilder"></see>.   -or-   The declaring type of <paramref name="constructor">constructor</paramref> is not a generic type definition.   -or-   The declaring type of <paramref name="constructor">constructor</paramref> is not the generic type definition of <paramref name="type">type</paramref>.</exception>
1881     </member>
1882     <member name="M:System.Reflection.Emit.TypeBuilder.GetConstructors(System.Reflection.BindingFlags)">
1883       <summary>Returns an array of <see cref="T:System.Reflection.ConstructorInfo"></see> objects representing the public and non-public constructors defined for this class, as specified.</summary>
1884       <param name="bindingAttr">This must be a bit flag from <see cref="T:System.Reflection.BindingFlags"></see> as in InvokeMethod, NonPublic, and so on.</param>
1885       <returns>Returns an array of <see cref="T:System.Reflection.ConstructorInfo"></see> objects representing the specified constructors defined for this class. If no constructors are defined, an empty array is returned.</returns>
1886       <exception cref="T:System.NotSupportedException">This method is not implemented for incomplete types.</exception>
1887     </member>
1888     <member name="M:System.Reflection.Emit.TypeBuilder.GetCustomAttributes(System.Boolean)">
1889       <summary>Returns all the custom attributes defined for this type.</summary>
1890       <param name="inherit">Specifies whether to search this member's inheritance chain to find the attributes.</param>
1891       <returns>Returns an array of objects representing all the custom attributes of this type.</returns>
1892       <exception cref="T:System.NotSupportedException">This method is not currently supported for incomplete types. Retrieve the type using <see cref="M:System.Type.GetType"></see> and call <see cref="M:System.Reflection.MemberInfo.GetCustomAttributes(System.Boolean)"></see> on the returned <see cref="T:System.Type"></see>.</exception>
1893     </member>
1894     <member name="M:System.Reflection.Emit.TypeBuilder.GetCustomAttributes(System.Type,System.Boolean)">
1895       <summary>Returns all the custom attributes of the current type that are assignable to a specified type.</summary>
1896       <param name="attributeType">The type of attribute to search for. Only attributes that are assignable to this type are returned.</param>
1897       <param name="inherit">Specifies whether to search this member's inheritance chain to find the attributes.</param>
1898       <returns>An array of custom attributes defined on the current type.</returns>
1899       <exception cref="T:System.NotSupportedException">This method is not currently supported for incomplete types. Retrieve the type using <see cref="M:System.Type.GetType"></see> and call <see cref="M:System.Reflection.MemberInfo.GetCustomAttributes(System.Boolean)"></see> on the returned <see cref="T:System.Type"></see>.</exception>
1900       <exception cref="T:System.ArgumentNullException"><paramref name="attributeType">attributeType</paramref> is null.</exception>
1901       <exception cref="T:System.ArgumentException">The type must be a type provided by the underlying runtime system.</exception>
1902     </member>
1903     <member name="M:System.Reflection.Emit.TypeBuilder.GetElementType">
1904       <summary>Calling this method always throws <see cref="T:System.NotSupportedException"></see>.</summary>
1905       <returns>This method is not supported. No value is returned.</returns>
1906       <exception cref="T:System.NotSupportedException">This method is not supported.</exception>
1907     </member>
1908     <member name="M:System.Reflection.Emit.TypeBuilder.GetEvent(System.String,System.Reflection.BindingFlags)">
1909       <summary>Returns the event with the specified name.</summary>
1910       <param name="name">The name of the event to search for.</param>
1911       <param name="bindingAttr">A bitwise combination of <see cref="T:System.Reflection.BindingFlags"></see> values that limits the search.</param>
1912       <returns>An <see cref="T:System.Reflection.EventInfo"></see> object representing the event declared or inherited by this type with the specified name, or null if there are no matches.</returns>
1913       <exception cref="T:System.NotSupportedException">This method is not implemented for incomplete types.</exception>
1914     </member>
1915     <member name="M:System.Reflection.Emit.TypeBuilder.GetEvents">
1916       <summary>Returns the public events declared or inherited by this type.</summary>
1917       <returns>Returns an array of <see cref="T:System.Reflection.EventInfo"></see> objects representing the public events declared or inherited by this type. An empty array is returned if there are no public events.</returns>
1918       <exception cref="T:System.NotSupportedException">This method is not implemented for incomplete types.</exception>
1919     </member>
1920     <member name="M:System.Reflection.Emit.TypeBuilder.GetEvents(System.Reflection.BindingFlags)">
1921       <summary>Returns the public and non-public events that are declared by this type.</summary>
1922       <param name="bindingAttr">A bitwise combination of <see cref="T:System.Reflection.BindingFlags"></see> values that limits the search.</param>
1923       <returns>Returns an array of <see cref="T:System.Reflection.EventInfo"></see> objects representing the events declared or inherited by this type that match the specified binding flags. An empty array is returned if there are no matching events.</returns>
1924       <exception cref="T:System.NotSupportedException">This method is not implemented for incomplete types.</exception>
1925     </member>
1926     <member name="M:System.Reflection.Emit.TypeBuilder.GetField(System.String,System.Reflection.BindingFlags)">
1927       <summary>Returns the field specified by the given name.</summary>
1928       <param name="name">The name of the field to get.</param>
1929       <param name="bindingAttr">This must be a bit flag from <see cref="T:System.Reflection.BindingFlags"></see> as in InvokeMethod, NonPublic, and so on.</param>
1930       <returns>Returns the <see cref="T:System.Reflection.FieldInfo"></see> object representing the field declared or inherited by this type with the specified name and public or non-public modifier. If there are no matches then null is returned.</returns>
1931       <exception cref="T:System.NotSupportedException">This method is not implemented for incomplete types.</exception>
1932     </member>
1933     <member name="M:System.Reflection.Emit.TypeBuilder.GetField(System.Type,System.Reflection.FieldInfo)">
1934       <summary>Returns the field of the specified constructed generic type that corresponds to the specified field of the generic type definition.</summary>
1935       <param name="type">The constructed generic type whose field is returned.</param>
1936       <param name="field">A field on the generic type definition of type, which specifies which field of type to return.</param>
1937       <returns>A <see cref="T:System.Reflection.FieldInfo"></see> object that represents the field of <paramref name="type">type</paramref> corresponding to <paramref name="field">field</paramref>, which specifies a field belonging to the generic type definition of <paramref name="type">type</paramref>.</returns>
1938       <exception cref="T:System.ArgumentException"><paramref name="type">type</paramref> does not represent a generic type.   -or-  <paramref name="type">type</paramref> is not of type <see cref="T:System.Reflection.Emit.TypeBuilder"></see>.   -or-   The declaring type of <paramref name="field">field</paramref> is not a generic type definition.   -or-   The declaring type of <paramref name="field">field</paramref> is not the generic type definition of <paramref name="type">type</paramref>.</exception>
1939     </member>
1940     <member name="M:System.Reflection.Emit.TypeBuilder.GetFields(System.Reflection.BindingFlags)">
1941       <summary>Returns the public and non-public fields that are declared by this type.</summary>
1942       <param name="bindingAttr">This must be a bit flag from <see cref="T:System.Reflection.BindingFlags"></see> : InvokeMethod, NonPublic, and so on.</param>
1943       <returns>Returns an array of <see cref="T:System.Reflection.FieldInfo"></see> objects representing the public and non-public fields declared or inherited by this type. An empty array is returned if there are no fields, as specified.</returns>
1944       <exception cref="T:System.NotSupportedException">This method is not implemented for incomplete types.</exception>
1945     </member>
1946     <member name="M:System.Reflection.Emit.TypeBuilder.GetGenericArguments">
1947       <summary>Returns an array of <see cref="T:System.Type"></see> objects representing the type arguments of a generic type or the type parameters of a generic type definition.</summary>
1948       <returns>An array of <see cref="T:System.Type"></see> objects. The elements of the array represent the type arguments of a generic type or the type parameters of a generic type definition.</returns>
1949     </member>
1950     <member name="M:System.Reflection.Emit.TypeBuilder.GetGenericParameterConstraints">
1951       <returns></returns>
1952     </member>
1953     <member name="M:System.Reflection.Emit.TypeBuilder.GetGenericTypeDefinition">
1954       <summary>Returns a <see cref="T:System.Type"></see> object that represents a generic type definition from which the current type can be obtained.</summary>
1955       <returns>A <see cref="T:System.Type"></see> object representing a generic type definition from which the current type can be obtained.</returns>
1956       <exception cref="T:System.InvalidOperationException">The current type is not generic. That is, <see cref="P:System.Reflection.Emit.TypeBuilder.IsGenericType"></see> returns false.</exception>
1957     </member>
1958     <member name="M:System.Reflection.Emit.TypeBuilder.GetInterface(System.String,System.Boolean)">
1959       <summary>Returns the interface implemented (directly or indirectly) by this class with the fully qualified name matching the given interface name.</summary>
1960       <param name="name">The name of the interface.</param>
1961       <param name="ignoreCase">If true, the search is case-insensitive. If false, the search is case-sensitive.</param>
1962       <returns>Returns a <see cref="T:System.Type"></see> object representing the implemented interface. Returns null if no interface matching name is found.</returns>
1963       <exception cref="T:System.NotSupportedException">This method is not implemented for incomplete types.</exception>
1964     </member>
1965     <member name="M:System.Reflection.Emit.TypeBuilder.GetInterfaceMap(System.Type)">
1966       <summary>Returns an interface mapping for the requested interface.</summary>
1967       <param name="interfaceType">The <see cref="T:System.Type"></see> of the interface for which the mapping is to be retrieved.</param>
1968       <returns>Returns the requested interface mapping.</returns>
1969       <exception cref="T:System.NotSupportedException">This method is not implemented for incomplete types.</exception>
1970     </member>
1971     <member name="M:System.Reflection.Emit.TypeBuilder.GetInterfaces">
1972       <summary>Returns an array of all the interfaces implemented on this type and its base types.</summary>
1973       <returns>Returns an array of <see cref="T:System.Type"></see> objects representing the implemented interfaces. If none are defined, an empty array is returned.</returns>
1974     </member>
1975     <member name="M:System.Reflection.Emit.TypeBuilder.GetMember(System.String,System.Reflection.MemberTypes,System.Reflection.BindingFlags)">
1976       <summary>Returns all the public and non-public members declared or inherited by this type, as specified.</summary>
1977       <param name="name">The name of the member.</param>
1978       <param name="type">The type of the member to return.</param>
1979       <param name="bindingAttr">This must be a bit flag from <see cref="T:System.Reflection.BindingFlags"></see>, as in InvokeMethod, NonPublic, and so on.</param>
1980       <returns>Returns an array of <see cref="T:System.Reflection.MemberInfo"></see> objects representing the public and non-public members defined on this type if <paramref name="nonPublic">nonPublic</paramref> is used; otherwise, only the public members are returned.</returns>
1981       <exception cref="T:System.NotSupportedException">This method is not implemented for incomplete types.</exception>
1982     </member>
1983     <member name="M:System.Reflection.Emit.TypeBuilder.GetMembers(System.Reflection.BindingFlags)">
1984       <summary>Returns the members for the public and non-public members declared or inherited by this type.</summary>
1985       <param name="bindingAttr">This must be a bit flag from <see cref="T:System.Reflection.BindingFlags"></see>, such as InvokeMethod, NonPublic, and so on.</param>
1986       <returns>Returns an array of <see cref="T:System.Reflection.MemberInfo"></see> objects representing the public and non-public members declared or inherited by this type. An empty array is returned if there are no matching members.</returns>
1987       <exception cref="T:System.NotSupportedException">This method is not implemented for incomplete types.</exception>
1988     </member>
1989     <member name="M:System.Reflection.Emit.TypeBuilder.GetMethod(System.Type,System.Reflection.MethodInfo)">
1990       <summary>Returns the method of the specified constructed generic type that corresponds to the specified method of the generic type definition.</summary>
1991       <param name="type">The constructed generic type whose method is returned.</param>
1992       <param name="method">A method on the generic type definition of type, which specifies which method of type to return.</param>
1993       <returns>A <see cref="T:System.Reflection.MethodInfo"></see> object that represents the method of <paramref name="type">type</paramref> corresponding to <paramref name="method">method</paramref>, which specifies a method belonging to the generic type definition of <paramref name="type">type</paramref>.</returns>
1994       <exception cref="T:System.ArgumentException"><paramref name="method">method</paramref> is a generic method that is not a generic method definition.   -or-  <paramref name="type">type</paramref> does not represent a generic type.   -or-  <paramref name="type">type</paramref> is not of type <see cref="T:System.Reflection.Emit.TypeBuilder"></see>.   -or-   The declaring type of <paramref name="method">method</paramref> is not a generic type definition.   -or-   The declaring type of <paramref name="method">method</paramref> is not the generic type definition of <paramref name="type">type</paramref>.</exception>
1995     </member>
1996     <member name="M:System.Reflection.Emit.TypeBuilder.GetMethods(System.Reflection.BindingFlags)">
1997       <summary>Returns all the public and non-public methods declared or inherited by this type, as specified.</summary>
1998       <param name="bindingAttr">This must be a bit flag from <see cref="T:System.Reflection.BindingFlags"></see> as in InvokeMethod, NonPublic, and so on.</param>
1999       <returns>Returns an array of <see cref="T:System.Reflection.MethodInfo"></see> objects representing the public and non-public methods defined on this type if <paramref name="nonPublic">nonPublic</paramref> is used; otherwise, only the public methods are returned.</returns>
2000       <exception cref="T:System.NotSupportedException">This method is not implemented for incomplete types.</exception>
2001     </member>
2002     <member name="M:System.Reflection.Emit.TypeBuilder.GetNestedType(System.String,System.Reflection.BindingFlags)">
2003       <summary>Returns the public and non-public nested types that are declared by this type.</summary>
2004       <param name="name">The <see cref="T:System.String"></see> containing the name of the nested type to get.</param>
2005       <param name="bindingAttr">A bitmask comprised of one or more <see cref="T:System.Reflection.BindingFlags"></see> that specify how the search is conducted.   -or-   Zero, to conduct a case-sensitive search for public methods.</param>
2006       <returns>A <see cref="T:System.Type"></see> object representing the nested type that matches the specified requirements, if found; otherwise, null.</returns>
2007       <exception cref="T:System.NotSupportedException">This method is not implemented for incomplete types.</exception>
2008     </member>
2009     <member name="M:System.Reflection.Emit.TypeBuilder.GetNestedTypes(System.Reflection.BindingFlags)">
2010       <summary>Returns the public and non-public nested types that are declared or inherited by this type.</summary>
2011       <param name="bindingAttr">This must be a bit flag from <see cref="T:System.Reflection.BindingFlags"></see>, as in InvokeMethod, NonPublic, and so on.</param>
2012       <returns>An array of <see cref="T:System.Type"></see> objects representing all the types nested within the current <see cref="T:System.Type"></see> that match the specified binding constraints.   An empty array of type <see cref="T:System.Type"></see>, if no types are nested within the current <see cref="T:System.Type"></see>, or if none of the nested types match the binding constraints.</returns>
2013       <exception cref="T:System.NotSupportedException">This method is not implemented for incomplete types.</exception>
2014     </member>
2015     <member name="M:System.Reflection.Emit.TypeBuilder.GetProperties(System.Reflection.BindingFlags)">
2016       <summary>Returns all the public and non-public properties declared or inherited by this type, as specified.</summary>
2017       <param name="bindingAttr">This invocation attribute. This must be a bit flag from <see cref="T:System.Reflection.BindingFlags"></see> : InvokeMethod, NonPublic, and so on.</param>
2018       <returns>Returns an array of PropertyInfo objects representing the public and non-public properties defined on this type if <paramref name="nonPublic">nonPublic</paramref> is used; otherwise, only the public properties are returned.</returns>
2019       <exception cref="T:System.NotSupportedException">This method is not implemented for incomplete types.</exception>
2020     </member>
2021     <member name="P:System.Reflection.Emit.TypeBuilder.GUID">
2022       <summary>Retrieves the GUID of this type.</summary>
2023       <returns>Read-only. Retrieves the GUID of this type</returns>
2024       <exception cref="T:System.NotSupportedException">This method is not currently supported for incomplete types.</exception>
2025     </member>
2026     <member name="M:System.Reflection.Emit.TypeBuilder.InvokeMember(System.String,System.Reflection.BindingFlags,System.Reflection.Binder,System.Object,System.Object[],System.Reflection.ParameterModifier[],System.Globalization.CultureInfo,System.String[])">
2027       <summary>Invokes the specified member. The method that is to be invoked must be accessible and provide the most specific match with the specified argument list, under the constraints of the specified binder and invocation attributes.</summary>
2028       <param name="name">The name of the member to invoke. This can be a constructor, method, property, or field. A suitable invocation attribute must be specified. Note that it is possible to invoke the default member of a class by passing an empty string as the name of the member.</param>
2029       <param name="invokeAttr">The invocation attribute. This must be a bit flag from BindingFlags.</param>
2030       <param name="binder">An object that enables the binding, coercion of argument types, invocation of members, and retrieval of MemberInfo objects using reflection. If binder is null, the default binder is used. See <see cref="T:System.Reflection.Binder"></see>.</param>
2031       <param name="target">The object on which to invoke the specified member. If the member is static, this parameter is ignored.</param>
2032       <param name="args">An argument list. This is an array of Objects that contains the number, order, and type of the parameters of the member to be invoked. If there are no parameters this should be null.</param>
2033       <param name="modifiers">An array of the same length as args with elements that represent the attributes associated with the arguments of the member to be invoked. A parameter has attributes associated with it in the metadata. They are used by various interoperability services. See the metadata specs for more details.</param>
2034       <param name="culture">An instance of CultureInfo used to govern the coercion of types. If this is null, the CultureInfo for the current thread is used. (Note that this is necessary to, for example, convert a String that represents 1000 to a Double value, since 1000 is represented differently by different cultures.)</param>
2035       <param name="namedParameters">Each parameter in the namedParameters array gets the value in the corresponding element in the args array. If the length of args is greater than the length of namedParameters, the remaining argument values are passed in order.</param>
2036       <returns>Returns the return value of the invoked member.</returns>
2037       <exception cref="T:System.NotSupportedException">This method is not currently supported for incomplete types.</exception>
2038     </member>
2039     <member name="M:System.Reflection.Emit.TypeBuilder.IsAssignableFrom(System.Reflection.TypeInfo)">
2040       <summary>Gets a value that indicates whether a specified <see cref="T:System.Reflection.TypeInfo"></see> object can be assigned to this object.</summary>
2041       <param name="typeInfo">The object to test.</param>
2042       <returns>true if <paramref name="typeInfo">typeInfo</paramref> can be assigned to this object; otherwise, false.</returns>
2043     </member>
2044     <member name="M:System.Reflection.Emit.TypeBuilder.IsAssignableFrom(System.Type)">
2045       <summary>Gets a value that indicates whether a specified <see cref="T:System.Type"></see> can be assigned to this object.</summary>
2046       <param name="c">The object to test.</param>
2047       <returns>true if the <paramref name="c">c</paramref> parameter and the current type represent the same type, or if the current type is in the inheritance hierarchy of <paramref name="c">c</paramref>, or if the current type is an interface that <paramref name="c">c</paramref> supports. false if none of these conditions are valid, or if <paramref name="c">c</paramref> is null.</returns>
2048     </member>
2049     <member name="P:System.Reflection.Emit.TypeBuilder.IsConstructedGenericType">
2050       <summary>Gets a value that indicates whether this object represents a constructed generic type.</summary>
2051       <returns>true if this object represents a constructed generic type; otherwise, false.</returns>
2052     </member>
2053     <member name="M:System.Reflection.Emit.TypeBuilder.IsCreated">
2054       <summary>Returns a value that indicates whether the current dynamic type has been created.</summary>
2055       <returns>true if the <see cref="M:System.Reflection.Emit.TypeBuilder.CreateType"></see> method has been called; otherwise, false.</returns>
2056     </member>
2057     <member name="M:System.Reflection.Emit.TypeBuilder.IsDefined(System.Type,System.Boolean)">
2058       <summary>Determines whether a custom attribute is applied to the current type.</summary>
2059       <param name="attributeType">The type of attribute to search for. Only attributes that are assignable to this type are returned.</param>
2060       <param name="inherit">Specifies whether to search this member's inheritance chain to find the attributes.</param>
2061       <returns>true if one or more instances of <paramref name="attributeType">attributeType</paramref>, or an attribute derived from <paramref name="attributeType">attributeType</paramref>, is defined on this type; otherwise, false.</returns>
2062       <exception cref="T:System.NotSupportedException">This method is not currently supported for incomplete types. Retrieve the type using <see cref="M:System.Type.GetType"></see> and call <see cref="M:System.Reflection.MemberInfo.IsDefined(System.Type,System.Boolean)"></see> on the returned <see cref="T:System.Type"></see>.</exception>
2063       <exception cref="T:System.ArgumentException"><paramref name="attributeType">attributeType</paramref> is not defined.</exception>
2064       <exception cref="T:System.ArgumentNullException"><paramref name="attributeType">attributeType</paramref> is null.</exception>
2065     </member>
2066     <member name="P:System.Reflection.Emit.TypeBuilder.IsEnum">
2067       <returns></returns>
2068     </member>
2069     <member name="P:System.Reflection.Emit.TypeBuilder.IsGenericParameter">
2070       <summary>Gets a value indicating whether the current type is a generic type parameter.</summary>
2071       <returns>true if the current <see cref="T:System.Reflection.Emit.TypeBuilder"></see> object represents a generic type parameter; otherwise, false.</returns>
2072     </member>
2073     <member name="P:System.Reflection.Emit.TypeBuilder.IsGenericType">
2074       <summary>Gets a value indicating whether the current type is a generic type.</summary>
2075       <returns>true if the type represented by the current <see cref="T:System.Reflection.Emit.TypeBuilder"></see> object is generic; otherwise, false.</returns>
2076     </member>
2077     <member name="P:System.Reflection.Emit.TypeBuilder.IsGenericTypeDefinition">
2078       <summary>Gets a value indicating whether the current <see cref="T:System.Reflection.Emit.TypeBuilder"></see> represents a generic type definition from which other generic types can be constructed.</summary>
2079       <returns>true if this <see cref="T:System.Reflection.Emit.TypeBuilder"></see> object represents a generic type definition; otherwise, false.</returns>
2080     </member>
2081     <member name="P:System.Reflection.Emit.TypeBuilder.IsSecurityCritical">
2082       <summary>Gets a value that indicates whether the current type is security-critical or security-safe-critical, and therefore can perform critical operations.</summary>
2083       <returns>true if the current type is security-critical or security-safe-critical; false if it is transparent.</returns>
2084       <exception cref="T:System.NotSupportedException">The current dynamic type has not been created by calling the <see cref="M:System.Reflection.Emit.TypeBuilder.CreateType"></see> method.</exception>
2085     </member>
2086     <member name="P:System.Reflection.Emit.TypeBuilder.IsSecuritySafeCritical">
2087       <summary>Gets a value that indicates whether the current type is security-safe-critical; that is, whether it can perform critical operations and can be accessed by transparent code.</summary>
2088       <returns>true if the current type is security-safe-critical; false if it is security-critical or transparent.</returns>
2089       <exception cref="T:System.NotSupportedException">The current dynamic type has not been created by calling the <see cref="M:System.Reflection.Emit.TypeBuilder.CreateType"></see> method.</exception>
2090     </member>
2091     <member name="P:System.Reflection.Emit.TypeBuilder.IsSecurityTransparent">
2092       <summary>Gets a value that indicates whether the current type is transparent, and therefore cannot perform critical operations.</summary>
2093       <returns>true if the type is security-transparent; otherwise, false.</returns>
2094       <exception cref="T:System.NotSupportedException">The current dynamic type has not been created by calling the <see cref="M:System.Reflection.Emit.TypeBuilder.CreateType"></see> method.</exception>
2095     </member>
2096     <member name="P:System.Reflection.Emit.TypeBuilder.IsSerializable">
2097       <returns></returns>
2098     </member>
2099     <member name="M:System.Reflection.Emit.TypeBuilder.IsSubclassOf(System.Type)">
2100       <summary>Determines whether this type is derived from a specified type.</summary>
2101       <param name="c">A <see cref="T:System.Type"></see> that is to be checked.</param>
2102       <returns>Read-only. Returns true if this type is the same as the type <paramref name="c">c</paramref>, or is a subtype of type <paramref name="c">c</paramref>; otherwise, false.</returns>
2103     </member>
2104     <member name="P:System.Reflection.Emit.TypeBuilder.IsSZArray">
2105       <returns></returns>
2106     </member>
2107     <member name="P:System.Reflection.Emit.TypeBuilder.IsTypeDefinition">
2108       <returns></returns>
2109     </member>
2110     <member name="P:System.Reflection.Emit.TypeBuilder.IsVariableBoundArray">
2111       <returns></returns>
2112     </member>
2113     <member name="M:System.Reflection.Emit.TypeBuilder.MakeArrayType">
2114       <summary>Returns a <see cref="T:System.Type"></see> object that represents a one-dimensional array of the current type, with a lower bound of zero.</summary>
2115       <returns>A <see cref="T:System.Type"></see> object representing a one-dimensional array type whose element type is the current type, with a lower bound of zero.</returns>
2116     </member>
2117     <member name="M:System.Reflection.Emit.TypeBuilder.MakeArrayType(System.Int32)">
2118       <summary>Returns a <see cref="T:System.Type"></see> object that represents an array of the current type, with the specified number of dimensions.</summary>
2119       <param name="rank">The number of dimensions for the array.</param>
2120       <returns>A <see cref="T:System.Type"></see> object that represents a one-dimensional array of the current type.</returns>
2121       <exception cref="T:System.IndexOutOfRangeException"><paramref name="rank">rank</paramref> is not a valid array dimension.</exception>
2122     </member>
2123     <member name="M:System.Reflection.Emit.TypeBuilder.MakeByRefType">
2124       <summary>Returns a <see cref="T:System.Type"></see> object that represents the current type when passed as a ref parameter (ByRef in Visual Basic).</summary>
2125       <returns>A <see cref="T:System.Type"></see> object that represents the current type when passed as a ref parameter (ByRef in Visual Basic).</returns>
2126     </member>
2127     <member name="M:System.Reflection.Emit.TypeBuilder.MakeGenericType(System.Type[])">
2128       <summary>Substitutes the elements of an array of types for the type parameters of the current generic type definition, and returns the resulting constructed type.</summary>
2129       <param name="typeArguments">An array of types to be substituted for the type parameters of the current generic type definition.</param>
2130       <returns>A <see cref="T:System.Type"></see> representing the constructed type formed by substituting the elements of <paramref name="typeArguments">typeArguments</paramref> for the type parameters of the current generic type.</returns>
2131       <exception cref="T:System.InvalidOperationException">The current type does not represent the definition of a generic type. That is, <see cref="P:System.Reflection.Emit.TypeBuilder.IsGenericTypeDefinition"></see> returns false.</exception>
2132       <exception cref="T:System.ArgumentNullException"><paramref name="typeArguments">typeArguments</paramref> is null.   -or-   Any element of <paramref name="typeArguments">typeArguments</paramref> is null.</exception>
2133       <exception cref="T:System.ArgumentException">The <see cref="P:System.Type.Module"></see> property of any element of <paramref name="typeArguments">typeArguments</paramref> is null.   -or-   The <see cref="P:System.Reflection.Module.Assembly"></see> property of the module of any element of <paramref name="typeArguments">typeArguments</paramref> is null.</exception>
2134     </member>
2135     <member name="M:System.Reflection.Emit.TypeBuilder.MakePointerType">
2136       <summary>Returns a <see cref="T:System.Type"></see> object that represents the type of an unmanaged pointer to the current type.</summary>
2137       <returns>A <see cref="T:System.Type"></see> object that represents the type of an unmanaged pointer to the current type.</returns>
2138     </member>
2139     <member name="P:System.Reflection.Emit.TypeBuilder.Module">
2140       <summary>Retrieves the dynamic module that contains this type definition.</summary>
2141       <returns>Read-only. Retrieves the dynamic module that contains this type definition.</returns>
2142     </member>
2143     <member name="P:System.Reflection.Emit.TypeBuilder.Name">
2144       <summary>Retrieves the name of this type.</summary>
2145       <returns>Read-only. Retrieves the <see cref="T:System.String"></see> name of this type.</returns>
2146     </member>
2147     <member name="P:System.Reflection.Emit.TypeBuilder.Namespace">
2148       <summary>Retrieves the namespace where this TypeBuilder is defined.</summary>
2149       <returns>Read-only. Retrieves the namespace where this TypeBuilder is defined.</returns>
2150     </member>
2151     <member name="P:System.Reflection.Emit.TypeBuilder.PackingSize">
2152       <summary>Retrieves the packing size of this type.</summary>
2153       <returns>Read-only. Retrieves the packing size of this type.</returns>
2154     </member>
2155     <member name="P:System.Reflection.Emit.TypeBuilder.ReflectedType">
2156       <summary>Returns the type that was used to obtain this type.</summary>
2157       <returns>Read-only. The type that was used to obtain this type.</returns>
2158     </member>
2159     <member name="M:System.Reflection.Emit.TypeBuilder.SetCustomAttribute(System.Reflection.Emit.CustomAttributeBuilder)">
2160       <summary>Set a custom attribute using a custom attribute builder.</summary>
2161       <param name="customBuilder">An instance of a helper class to define the custom attribute.</param>
2162       <exception cref="T:System.ArgumentNullException"><paramref name="customBuilder">customBuilder</paramref> is null.</exception>
2163       <exception cref="T:System.InvalidOperationException">For the current dynamic type, the <see cref="P:System.Reflection.Emit.TypeBuilder.IsGenericType"></see> property is true, but the <see cref="P:System.Reflection.Emit.TypeBuilder.IsGenericTypeDefinition"></see> property is false.</exception>
2164     </member>
2165     <member name="M:System.Reflection.Emit.TypeBuilder.SetCustomAttribute(System.Reflection.ConstructorInfo,System.Byte[])">
2166       <summary>Sets a custom attribute using a specified custom attribute blob.</summary>
2167       <param name="con">The constructor for the custom attribute.</param>
2168       <param name="binaryAttribute">A byte blob representing the attributes.</param>
2169       <exception cref="T:System.ArgumentNullException"><paramref name="con">con</paramref> or <paramref name="binaryAttribute">binaryAttribute</paramref> is null.</exception>
2170       <exception cref="T:System.InvalidOperationException">For the current dynamic type, the <see cref="P:System.Reflection.Emit.TypeBuilder.IsGenericType"></see> property is true, but the <see cref="P:System.Reflection.Emit.TypeBuilder.IsGenericTypeDefinition"></see> property is false.</exception>
2171     </member>
2172     <member name="M:System.Reflection.Emit.TypeBuilder.SetParent(System.Type)">
2173       <summary>Sets the base type of the type currently under construction.</summary>
2174       <param name="parent">The new base type.</param>
2175       <exception cref="T:System.InvalidOperationException">The type was previously created using <see cref="M:System.Reflection.Emit.TypeBuilder.CreateType"></see>.   -or-  <paramref name="parent">parent</paramref> is null, and the current instance represents an interface whose attributes do not include <see cref="F:System.Reflection.TypeAttributes.Abstract"></see>.   -or-   For the current dynamic type, the <see cref="P:System.Reflection.Emit.TypeBuilder.IsGenericType"></see> property is true, but the <see cref="P:System.Reflection.Emit.TypeBuilder.IsGenericTypeDefinition"></see> property is false.</exception>
2176       <exception cref="T:System.ArgumentException"><paramref name="parent">parent</paramref> is an interface. This exception condition is new in the .NET Framework version 2.0.</exception>
2177     </member>
2178     <member name="P:System.Reflection.Emit.TypeBuilder.Size">
2179       <summary>Retrieves the total size of a type.</summary>
2180       <returns>Read-only. Retrieves this type’s total size.</returns>
2181     </member>
2182     <member name="M:System.Reflection.Emit.TypeBuilder.ToString">
2183       <summary>Returns the name of the type excluding the namespace.</summary>
2184       <returns>Read-only. The name of the type excluding the namespace.</returns>
2185     </member>
2186     <member name="P:System.Reflection.Emit.TypeBuilder.TypeHandle">
2187       <summary>Not supported in dynamic modules.</summary>
2188       <returns>Read-only.</returns>
2189       <exception cref="T:System.NotSupportedException">Not supported in dynamic modules.</exception>
2190     </member>
2191     <member name="P:System.Reflection.Emit.TypeBuilder.UnderlyingSystemType">
2192       <summary>Returns the underlying system type for this TypeBuilder.</summary>
2193       <returns>Read-only. Returns the underlying system type.</returns>
2194       <exception cref="T:System.InvalidOperationException">This type is an enumeration, but there is no underlying system type.</exception>
2195     </member>
2196     <member name="F:System.Reflection.Emit.TypeBuilder.UnspecifiedTypeSize">
2197       <summary>Represents that total size for the type is not specified.</summary>
2198       <returns></returns>
2199     </member>
2200   </members>
2201 </doc></span>