Revert "[TFM] Update TizenFX TFM to net6.0 (#5360)" (#5436)
[platform/core/csapi/tizenfx.git] / pkg / Tizen.NET.API11 / build / tizen11.0 / ref / System.Reflection.Emit.xml
1 <?xml version="1.0" encoding="utf-8"?>
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.CodeBase">
11       <summary>Gets the location of the assembly, as specified originally (such as in an <see cref="T:System.Reflection.AssemblyName" /> object).</summary>
12       <returns>The location of the assembly, as specified originally.</returns>
13       <exception cref="T:System.NotSupportedException">This method is not currently supported.</exception>
14       <exception cref="T:System.Security.SecurityException">The caller does not have the required permission.</exception>
15     </member>
16     <member name="M:System.Reflection.Emit.AssemblyBuilder.DefineDynamicAssembly(System.Reflection.AssemblyName,System.Reflection.Emit.AssemblyBuilderAccess)">
17       <summary>Defines a dynamic assembly that has the specified name and access rights.</summary>
18       <param name="name">The name of the assembly.</param>
19       <param name="access">The access rights of the assembly.</param>
20       <returns>An object that represents the new assembly.</returns>
21     </member>
22     <member name="M:System.Reflection.Emit.AssemblyBuilder.DefineDynamicAssembly(System.Reflection.AssemblyName,System.Reflection.Emit.AssemblyBuilderAccess,System.Collections.Generic.IEnumerable{System.Reflection.Emit.CustomAttributeBuilder})">
23       <summary>Defines a new assembly that has the specified name, access rights, and attributes.</summary>
24       <param name="name">The name of the assembly.</param>
25       <param name="access">The access rights of the assembly.</param>
26       <param name="assemblyAttributes">A collection that contains the attributes of the assembly.</param>
27       <returns>An object that represents the new assembly.</returns>
28     </member>
29     <member name="M:System.Reflection.Emit.AssemblyBuilder.DefineDynamicModule(System.String)">
30       <summary>Defines a named transient dynamic module in this assembly.</summary>
31       <param name="name">The name of the dynamic module.</param>
32       <returns>A <see cref="T:System.Reflection.Emit.ModuleBuilder" /> representing the defined dynamic module.</returns>
33       <exception cref="T:System.ArgumentException">
34         <paramref name="name" /> begins with white space.
35 -or-
36 The length of <paramref name="name" /> is zero.
37 -or-
38 The length of <paramref name="name" /> is greater than the system-defined maximum length.</exception>
39       <exception cref="T:System.ArgumentNullException">
40         <paramref name="name" /> is <see langword="null" />.</exception>
41       <exception cref="T:System.Security.SecurityException">The caller does not have the required permission.</exception>
42       <exception cref="T:System.ExecutionEngineException">The assembly for default symbol writer cannot be loaded.
43 -or-
44 The type that implements the default symbol writer interface cannot be found.</exception>
45     </member>
46     <member name="P:System.Reflection.Emit.AssemblyBuilder.EntryPoint">
47       <summary>Returns the entry point of this assembly.</summary>
48       <returns>The entry point of this assembly.</returns>
49       <exception cref="T:System.Security.SecurityException">The caller does not have the required permission.</exception>
50     </member>
51     <member name="M:System.Reflection.Emit.AssemblyBuilder.Equals(System.Object)">
52       <summary>Returns a value that indicates whether this instance is equal to the specified object.</summary>
53       <param name="obj">An object to compare with this instance, or <see langword="null" />.</param>
54       <returns>
55         <see langword="true" /> if <paramref name="obj" /> equals the type and value of this instance; otherwise, <see langword="false" />.</returns>
56     </member>
57     <member name="P:System.Reflection.Emit.AssemblyBuilder.FullName">
58       <summary>Gets the display name of the current dynamic assembly.</summary>
59       <returns>The display name of the dynamic assembly.</returns>
60     </member>
61     <member name="M:System.Reflection.Emit.AssemblyBuilder.GetCustomAttributes(System.Boolean)">
62       <summary>Returns all the custom attributes that have been applied to the current <see cref="T:System.Reflection.Emit.AssemblyBuilder" />.</summary>
63       <param name="inherit">This argument is ignored for objects of this type.</param>
64       <returns>An array that contains the custom attributes; the array is empty if there are no attributes.</returns>
65     </member>
66     <member name="M:System.Reflection.Emit.AssemblyBuilder.GetCustomAttributes(System.Type,System.Boolean)">
67       <summary>Returns all the custom attributes that have been applied to the current <see cref="T:System.Reflection.Emit.AssemblyBuilder" />, and that derive from a specified attribute type.</summary>
68       <param name="attributeType">The base type from which attributes derive.</param>
69       <param name="inherit">This argument is ignored for objects of this type.</param>
70       <returns>An array that contains the custom attributes that are derived at any level from <paramref name="attributeType" />; the array is empty if there are no such attributes.</returns>
71       <exception cref="T:System.ArgumentNullException">
72         <paramref name="attributeType" /> is <see langword="null" />.</exception>
73       <exception cref="T:System.ArgumentException">
74         <paramref name="attributeType" /> is not a <see cref="T:System.Type" /> object supplied by the runtime. For example, <paramref name="attributeType" /> is a <see cref="T:System.Reflection.Emit.TypeBuilder" /> object.</exception>
75     </member>
76     <member name="M:System.Reflection.Emit.AssemblyBuilder.GetCustomAttributesData">
77       <summary>Returns <see cref="T:System.Reflection.CustomAttributeData" /> objects that contain information about the attributes that have been applied to the current <see cref="T:System.Reflection.Emit.AssemblyBuilder" />.</summary>
78       <returns>A generic list of <see cref="T:System.Reflection.CustomAttributeData" /> objects representing data about the attributes that have been applied to the current module.</returns>
79     </member>
80     <member name="M:System.Reflection.Emit.AssemblyBuilder.GetDynamicModule(System.String)">
81       <summary>Returns the dynamic module with the specified name.</summary>
82       <param name="name">The name of the requested dynamic module.</param>
83       <returns>A ModuleBuilder object representing the requested dynamic module.</returns>
84       <exception cref="T:System.ArgumentNullException">
85         <paramref name="name" /> is <see langword="null" />.</exception>
86       <exception cref="T:System.ArgumentException">The length of <paramref name="name" /> is zero.</exception>
87       <exception cref="T:System.Security.SecurityException">The caller does not have the required permission.</exception>
88     </member>
89     <member name="M:System.Reflection.Emit.AssemblyBuilder.GetExportedTypes">
90       <summary>Gets the exported types defined in this assembly.</summary>
91       <returns>An array of <see cref="T:System.Type" /> containing the exported types defined in this assembly.</returns>
92       <exception cref="T:System.NotSupportedException">This method is not implemented.</exception>
93       <exception cref="T:System.Security.SecurityException">The caller does not have the required permission.</exception>
94     </member>
95     <member name="M:System.Reflection.Emit.AssemblyBuilder.GetFile(System.String)">
96       <summary>Gets a <see cref="T:System.IO.FileStream" /> for the specified file in the file table of the manifest of this assembly.</summary>
97       <param name="name">The name of the specified file.</param>
98       <returns>A <see cref="T:System.IO.FileStream" /> for the specified file, or <see langword="null" />, if the file is not found.</returns>
99       <exception cref="T:System.NotSupportedException">This method is not currently supported.</exception>
100       <exception cref="T:System.Security.SecurityException">The caller does not have the required permission.</exception>
101     </member>
102     <member name="M:System.Reflection.Emit.AssemblyBuilder.GetFiles(System.Boolean)">
103       <summary>Gets the files in the file table of an assembly manifest, specifying whether to include resource modules.</summary>
104       <param name="getResourceModules">
105         <see langword="true" /> to include resource modules; otherwise, <see langword="false" />.</param>
106       <returns>An array of <see cref="T:System.IO.FileStream" /> objects.</returns>
107       <exception cref="T:System.NotSupportedException">This method is not currently supported.</exception>
108       <exception cref="T:System.Security.SecurityException">The caller does not have the required permission.</exception>
109     </member>
110     <member name="M:System.Reflection.Emit.AssemblyBuilder.GetHashCode">
111       <summary>Returns the hash code for this instance.</summary>
112       <returns>A 32-bit signed integer hash code.</returns>
113     </member>
114     <member name="M:System.Reflection.Emit.AssemblyBuilder.GetLoadedModules(System.Boolean)">
115       <summary>Returns all the loaded modules that are part of this assembly, and optionally includes resource modules.</summary>
116       <param name="getResourceModules">
117         <see langword="true" /> to include resource modules; otherwise, <see langword="false" />.</param>
118       <returns>The loaded modules that are part of this assembly.</returns>
119     </member>
120     <member name="M:System.Reflection.Emit.AssemblyBuilder.GetManifestResourceInfo(System.String)">
121       <summary>Returns information about how the given resource has been persisted.</summary>
122       <param name="resourceName">The name of the resource.</param>
123       <returns>
124         <see cref="T:System.Reflection.ManifestResourceInfo" /> populated with information about the resource's topology, or <see langword="null" /> if the resource is not found.</returns>
125       <exception cref="T:System.NotSupportedException">This method is not currently supported.</exception>
126       <exception cref="T:System.Security.SecurityException">The caller does not have the required permission.</exception>
127     </member>
128     <member name="M:System.Reflection.Emit.AssemblyBuilder.GetManifestResourceNames">
129       <summary>Loads the specified manifest resource from this assembly.</summary>
130       <returns>An array of type <see langword="String" /> containing the names of all the resources.</returns>
131       <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" />.</exception>
132       <exception cref="T:System.Security.SecurityException">The caller does not have the required permission.</exception>
133     </member>
134     <member name="M:System.Reflection.Emit.AssemblyBuilder.GetManifestResourceStream(System.String)">
135       <summary>Loads the specified manifest resource from this assembly.</summary>
136       <param name="name">The name of the manifest resource being requested.</param>
137       <returns>A <see cref="T:System.IO.Stream" /> representing this manifest resource.</returns>
138       <exception cref="T:System.NotSupportedException">This method is not currently supported.</exception>
139       <exception cref="T:System.Security.SecurityException">The caller does not have the required permission.</exception>
140     </member>
141     <member name="M:System.Reflection.Emit.AssemblyBuilder.GetManifestResourceStream(System.Type,System.String)">
142       <summary>Loads the specified manifest resource, scoped by the namespace of the specified type, from this assembly.</summary>
143       <param name="type">The type whose namespace is used to scope the manifest resource name.</param>
144       <param name="name">The name of the manifest resource being requested.</param>
145       <returns>A <see cref="T:System.IO.Stream" /> representing this manifest resource.</returns>
146       <exception cref="T:System.NotSupportedException">This method is not currently supported.</exception>
147       <exception cref="T:System.Security.SecurityException">The caller does not have the required permission.</exception>
148     </member>
149     <member name="M:System.Reflection.Emit.AssemblyBuilder.GetModule(System.String)">
150       <summary>Gets the specified module in this assembly.</summary>
151       <param name="name">The name of the requested module.</param>
152       <returns>The module being requested, or <see langword="null" /> if the module is not found.</returns>
153     </member>
154     <member name="M:System.Reflection.Emit.AssemblyBuilder.GetModules(System.Boolean)">
155       <summary>Gets all the modules that are part of this assembly, and optionally includes resource modules.</summary>
156       <param name="getResourceModules">
157         <see langword="true" /> to include resource modules; otherwise, <see langword="false" />.</param>
158       <returns>The modules that are part of this assembly.</returns>
159     </member>
160     <member name="M:System.Reflection.Emit.AssemblyBuilder.GetName(System.Boolean)">
161       <summary>Gets the <see cref="T:System.Reflection.AssemblyName" /> that was specified when the current dynamic assembly was created, and sets the code base as specified.</summary>
162       <param name="copiedName">
163         <see langword="true" /> to set the code base to the location of the assembly after it is shadow-copied; <see langword="false" /> to set the code base to the original location.</param>
164       <returns>The name of the dynamic assembly.</returns>
165     </member>
166     <member name="M:System.Reflection.Emit.AssemblyBuilder.GetReferencedAssemblies">
167       <summary>Gets an incomplete list of <see cref="T:System.Reflection.AssemblyName" /> objects for the assemblies that are referenced by this <see cref="T:System.Reflection.Emit.AssemblyBuilder" />.</summary>
168       <returns>An array of assembly names for the referenced assemblies. This array is not a complete list.</returns>
169     </member>
170     <member name="M:System.Reflection.Emit.AssemblyBuilder.GetSatelliteAssembly(System.Globalization.CultureInfo)">
171       <summary>Gets the satellite assembly for the specified culture.</summary>
172       <param name="culture">The specified culture.</param>
173       <returns>The specified satellite assembly.</returns>
174       <exception cref="T:System.ArgumentNullException">
175         <paramref name="culture" /> is <see langword="null" />.</exception>
176       <exception cref="T:System.IO.FileNotFoundException">The assembly cannot be found.</exception>
177       <exception cref="T:System.IO.FileLoadException">The satellite assembly with a matching file name was found, but the <see langword="CultureInfo" /> did not match the one specified.</exception>
178       <exception cref="T:System.BadImageFormatException">The satellite assembly is not a valid assembly.</exception>
179     </member>
180     <member name="M:System.Reflection.Emit.AssemblyBuilder.GetSatelliteAssembly(System.Globalization.CultureInfo,System.Version)">
181       <summary>Gets the specified version of the satellite assembly for the specified culture.</summary>
182       <param name="culture">The specified culture.</param>
183       <param name="version">The version of the satellite assembly.</param>
184       <returns>The specified satellite assembly.</returns>
185       <exception cref="T:System.ArgumentNullException">
186         <paramref name="culture" /> is <see langword="null" />.</exception>
187       <exception cref="T:System.IO.FileLoadException">The satellite assembly with a matching file name was found, but the <see langword="CultureInfo" /> or the version did not match the one specified.</exception>
188       <exception cref="T:System.IO.FileNotFoundException">The assembly cannot be found.</exception>
189       <exception cref="T:System.BadImageFormatException">The satellite assembly is not a valid assembly.</exception>
190     </member>
191     <member name="M:System.Reflection.Emit.AssemblyBuilder.GetType(System.String,System.Boolean,System.Boolean)">
192       <summary>Gets the specified type from the types that have been defined and created in the current <see cref="T:System.Reflection.Emit.AssemblyBuilder" />.</summary>
193       <param name="name">The name of the type to search for.</param>
194       <param name="throwOnError">
195         <see langword="true" /> to throw an exception if the type is not found; otherwise, <see langword="false" />.</param>
196       <param name="ignoreCase">
197         <see langword="true" /> to ignore the case of the type name when searching; otherwise, <see langword="false" />.</param>
198       <returns>The specified type, or <see langword="null" /> if the type is not found or has not been created yet.</returns>
199     </member>
200     <member name="P:System.Reflection.Emit.AssemblyBuilder.GlobalAssemblyCache">
201       <summary>Gets a value that indicates whether the assembly was loaded from the global assembly cache.</summary>
202       <returns>Always <see langword="false" />.</returns>
203     </member>
204     <member name="P:System.Reflection.Emit.AssemblyBuilder.HostContext">
205       <summary>Gets the host context where the dynamic assembly is being created.</summary>
206       <returns>A value that indicates the host context where the dynamic assembly is being created.</returns>
207     </member>
208     <member name="P:System.Reflection.Emit.AssemblyBuilder.ImageRuntimeVersion">
209       <summary>Gets the version of the common language runtime that will be saved in the file containing the manifest.</summary>
210       <returns>A string representing the common language runtime version.</returns>
211       <exception cref="T:System.Security.SecurityException">The caller does not have the required permission.</exception>
212     </member>
213     <member name="M:System.Reflection.Emit.AssemblyBuilder.IsDefined(System.Type,System.Boolean)">
214       <summary>Returns a value that indicates whether one or more instances of the specified attribute type is applied to this member.</summary>
215       <param name="attributeType">The type of attribute to test for.</param>
216       <param name="inherit">This argument is ignored for objects of this type.</param>
217       <returns>
218         <see langword="true" /> if one or more instances of <paramref name="attributeType" /> is applied to this dynamic assembly; otherwise, <see langword="false" />.</returns>
219     </member>
220     <member name="P:System.Reflection.Emit.AssemblyBuilder.IsDynamic">
221       <summary>Gets a value that indicates that the current assembly is a dynamic assembly.</summary>
222       <returns>Always <see langword="true" />.</returns>
223     </member>
224     <member name="P:System.Reflection.Emit.AssemblyBuilder.Location">
225       <summary>Gets the location, in codebase format, of the loaded file that contains the manifest if it is not shadow-copied.</summary>
226       <returns>The location of the loaded file that contains the manifest. If the loaded file has been shadow-copied, the <see langword="Location" /> is that of the file before being shadow-copied.</returns>
227       <exception cref="T:System.NotSupportedException">This method is not currently supported.</exception>
228       <exception cref="T:System.Security.SecurityException">The caller does not have the required permission.</exception>
229     </member>
230     <member name="P:System.Reflection.Emit.AssemblyBuilder.ManifestModule">
231       <summary>Gets the module in the current <see cref="T:System.Reflection.Emit.AssemblyBuilder" /> that contains the assembly manifest.</summary>
232       <returns>The manifest module.</returns>
233     </member>
234     <member name="P:System.Reflection.Emit.AssemblyBuilder.ReflectionOnly">
235       <summary>Gets a value indicating whether the dynamic assembly is in the reflection-only context.</summary>
236       <returns>
237         <see langword="true" /> if the dynamic assembly is in the reflection-only context; otherwise, <see langword="false" />.</returns>
238     </member>
239     <member name="M:System.Reflection.Emit.AssemblyBuilder.SetCustomAttribute(System.Reflection.ConstructorInfo,System.Byte[])">
240       <summary>Set a custom attribute on this assembly using a specified custom attribute blob.</summary>
241       <param name="con">The constructor for the custom attribute.</param>
242       <param name="binaryAttribute">A byte blob representing the attributes.</param>
243       <exception cref="T:System.ArgumentNullException">
244         <paramref name="con" /> or <paramref name="binaryAttribute" /> is <see langword="null" />.</exception>
245       <exception cref="T:System.Security.SecurityException">The caller does not have the required permission.</exception>
246       <exception cref="T:System.ArgumentException">
247         <paramref name="con" /> is not a <see langword="RuntimeConstructorInfo" /> object.</exception>
248     </member>
249     <member name="M:System.Reflection.Emit.AssemblyBuilder.SetCustomAttribute(System.Reflection.Emit.CustomAttributeBuilder)">
250       <summary>Set a custom attribute on this assembly using a custom attribute builder.</summary>
251       <param name="customBuilder">An instance of a helper class to define the custom attribute.</param>
252       <exception cref="T:System.ArgumentNullException">
253         <paramref name="con" /> is <see langword="null" />.</exception>
254       <exception cref="T:System.Security.SecurityException">The caller does not have the required permission.</exception>
255     </member>
256     <member name="T:System.Reflection.Emit.AssemblyBuilderAccess">
257       <summary>Defines the access modes for a dynamic assembly.</summary>
258     </member>
259     <member name="F:System.Reflection.Emit.AssemblyBuilderAccess.Run">
260       <summary>The dynamic assembly can be executed, but not saved.</summary>
261     </member>
262     <member name="F:System.Reflection.Emit.AssemblyBuilderAccess.RunAndCollect">
263       <summary>The dynamic assembly will be automatically unloaded and its memory reclaimed, when it's no longer accessible.</summary>
264     </member>
265     <member name="T:System.Reflection.Emit.ConstructorBuilder">
266       <summary>Defines and represents a constructor of a dynamic class.</summary>
267     </member>
268     <member name="P:System.Reflection.Emit.ConstructorBuilder.Attributes">
269       <summary>Gets the attributes for this constructor.</summary>
270       <returns>The attributes for this constructor.</returns>
271     </member>
272     <member name="P:System.Reflection.Emit.ConstructorBuilder.CallingConvention">
273       <summary>Gets a <see cref="T:System.Reflection.CallingConventions" /> value that depends on whether the declaring type is generic.</summary>
274       <returns>
275         <see cref="F:System.Reflection.CallingConventions.HasThis" /> if the declaring type is generic; otherwise, <see cref="F:System.Reflection.CallingConventions.Standard" />.</returns>
276     </member>
277     <member name="P:System.Reflection.Emit.ConstructorBuilder.DeclaringType">
278       <summary>Gets a reference to the <see cref="T:System.Type" /> object for the type that declares this member.</summary>
279       <returns>The type that declares this member.</returns>
280     </member>
281     <member name="M:System.Reflection.Emit.ConstructorBuilder.DefineParameter(System.Int32,System.Reflection.ParameterAttributes,System.String)">
282       <summary>Defines a parameter of this constructor.</summary>
283       <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>
284       <param name="attributes">The attributes of the parameter.</param>
285       <param name="strParamName">The name of the parameter. The name can be the null string.</param>
286       <returns>An object that represents the new parameter of this constructor.</returns>
287       <exception cref="T:System.ArgumentOutOfRangeException">
288         <paramref name="iSequence" /> is less than 0 (zero), or it is greater than the number of parameters of the constructor.</exception>
289       <exception cref="T:System.InvalidOperationException">The containing type has been created using <see cref="M:System.Reflection.Emit.TypeBuilder.CreateType" />.</exception>
290     </member>
291     <member name="M:System.Reflection.Emit.ConstructorBuilder.GetCustomAttributes(System.Boolean)">
292       <summary>Returns all the custom attributes defined for this constructor.</summary>
293       <param name="inherit">Controls inheritance of custom attributes from base classes. This parameter is ignored.</param>
294       <returns>An array of objects representing all the custom attributes of the constructor represented by this <see cref="T:System.Reflection.Emit.ConstructorBuilder" /> instance.</returns>
295       <exception cref="T:System.NotSupportedException">This method is not currently supported.</exception>
296     </member>
297     <member name="M:System.Reflection.Emit.ConstructorBuilder.GetCustomAttributes(System.Type,System.Boolean)">
298       <summary>Returns the custom attributes identified by the given type.</summary>
299       <param name="attributeType">The custom attribute type.</param>
300       <param name="inherit">Controls inheritance of custom attributes from base classes. This parameter is ignored.</param>
301       <returns>An object array that represents the attributes of this constructor.</returns>
302       <exception cref="T:System.NotSupportedException">This method is not currently supported.</exception>
303     </member>
304     <member name="M:System.Reflection.Emit.ConstructorBuilder.GetILGenerator">
305       <summary>Gets an <see cref="T:System.Reflection.Emit.ILGenerator" /> for this constructor.</summary>
306       <returns>An <see cref="T:System.Reflection.Emit.ILGenerator" /> object for this constructor.</returns>
307       <exception cref="T:System.InvalidOperationException">The constructor is a parameterless constructor.
308 -or-
309 The constructor has <see cref="T:System.Reflection.MethodAttributes" /> or <see cref="T:System.Reflection.MethodImplAttributes" /> flags indicating that it should not have a method body.</exception>
310     </member>
311     <member name="M:System.Reflection.Emit.ConstructorBuilder.GetILGenerator(System.Int32)">
312       <summary>Gets an <see cref="T:System.Reflection.Emit.ILGenerator" /> object, with the specified MSIL stream size, that can be used to build a method body for this constructor.</summary>
313       <param name="streamSize">The size of the MSIL stream, in bytes.</param>
314       <returns>An <see cref="T:System.Reflection.Emit.ILGenerator" /> for this constructor.</returns>
315       <exception cref="T:System.InvalidOperationException">The constructor is a parameterless constructor.
316 -or-
317 The constructor has <see cref="T:System.Reflection.MethodAttributes" /> or <see cref="T:System.Reflection.MethodImplAttributes" /> flags indicating that it should not have a method body.</exception>
318     </member>
319     <member name="M:System.Reflection.Emit.ConstructorBuilder.GetMethodImplementationFlags">
320       <summary>Returns the method implementation flags for this constructor.</summary>
321       <returns>The method implementation flags for this constructor.</returns>
322     </member>
323     <member name="M:System.Reflection.Emit.ConstructorBuilder.GetParameters">
324       <summary>Returns the parameters of this constructor.</summary>
325       <returns>An array that represents the parameters of this constructor.</returns>
326       <exception cref="T:System.InvalidOperationException">
327         <see cref="M:System.Reflection.Emit.TypeBuilder.CreateType" /> has not been called on this constructor's type, in the .NET Framework versions 1.0 and 1.1.</exception>
328       <exception cref="T:System.NotSupportedException">
329         <see cref="M:System.Reflection.Emit.TypeBuilder.CreateType" /> has not been called on this constructor's type, in the .NET Framework version 2.0.</exception>
330     </member>
331     <member name="P:System.Reflection.Emit.ConstructorBuilder.InitLocals">
332       <summary>Gets or sets whether the local variables in this constructor should be zero-initialized.</summary>
333       <returns>Read/write. Gets or sets whether the local variables in this constructor should be zero-initialized.</returns>
334     </member>
335     <member name="M:System.Reflection.Emit.ConstructorBuilder.Invoke(System.Object,System.Reflection.BindingFlags,System.Reflection.Binder,System.Object[],System.Globalization.CultureInfo)">
336       <summary>Dynamically invokes the constructor reflected by this instance with the specified arguments, under the constraints of the specified <see langword="Binder" />.</summary>
337       <param name="obj">The object that needs to be reinitialized.</param>
338       <param name="invokeAttr">One of the <see langword="BindingFlags" /> values that specifies the type of binding that is desired.</param>
339       <param name="binder">A <see langword="Binder" /> that defines a set of properties and enables the binding, coercion of argument types, and invocation of members using reflection. If <paramref name="binder" /> is <see langword="null" />, then Binder.DefaultBinding is used.</param>
340       <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 (<see langword="Nothing" /> in Visual Basic).</param>
341       <param name="culture">A <see cref="T:System.Globalization.CultureInfo" /> used to govern the coercion of types. If this is null, the <see cref="T:System.Globalization.CultureInfo" /> for the current thread is used.</param>
342       <returns>An instance of the class associated with the constructor.</returns>
343       <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[])" /> and call <see cref="M:System.Reflection.ConstructorInfo.Invoke(System.Reflection.BindingFlags,System.Reflection.Binder,System.Object[],System.Globalization.CultureInfo)" /> on the returned <see cref="T:System.Reflection.ConstructorInfo" />.</exception>
344     </member>
345     <member name="M:System.Reflection.Emit.ConstructorBuilder.Invoke(System.Reflection.BindingFlags,System.Reflection.Binder,System.Object[],System.Globalization.CultureInfo)">
346       <summary>Dynamically invokes the constructor represented by this instance on the given object, passing along the specified parameters, and under the constraints of the given binder.</summary>
347       <param name="invokeAttr">This must be a bit flag from <see cref="T:System.Reflection.BindingFlags" />, such as InvokeMethod, NonPublic, and so on.</param>
348       <param name="binder">An object that enables the binding, coercion of argument types, invocation of members, and retrieval of <see langword="MemberInfo" /> objects using reflection. If binder is <see langword="null" />, the default binder is used. See <see cref="T:System.Reflection.Binder" />.</param>
349       <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 <see langword="null" />.</param>
350       <param name="culture">An instance of <see cref="T:System.Globalization.CultureInfo" /> used to govern the coercion of types. If this is null, the <see cref="T:System.Globalization.CultureInfo" /> for the current thread is used. (For example, this is necessary to convert a <see cref="T:System.String" /> that represents 1000 to a <see cref="T:System.Double" /> value, since 1000 is represented differently by different cultures.)</param>
351       <returns>The value returned by the invoked constructor.</returns>
352       <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[])" /> and call <see cref="M:System.Reflection.ConstructorInfo.Invoke(System.Reflection.BindingFlags,System.Reflection.Binder,System.Object[],System.Globalization.CultureInfo)" /> on the returned <see cref="T:System.Reflection.ConstructorInfo" />.</exception>
353     </member>
354     <member name="M:System.Reflection.Emit.ConstructorBuilder.IsDefined(System.Type,System.Boolean)">
355       <summary>Checks if the specified custom attribute type is defined.</summary>
356       <param name="attributeType">A custom attribute type.</param>
357       <param name="inherit">Controls inheritance of custom attributes from base classes. This parameter is ignored.</param>
358       <returns>
359         <see langword="true" /> if the specified custom attribute type is defined; otherwise, <see langword="false" />.</returns>
360       <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[])" /> and call <see cref="M:System.Reflection.MemberInfo.IsDefined(System.Type,System.Boolean)" /> on the returned <see cref="T:System.Reflection.ConstructorInfo" />.</exception>
361     </member>
362     <member name="P:System.Reflection.Emit.ConstructorBuilder.MethodHandle">
363       <summary>Gets the internal handle for the method. Use this handle to access the underlying metadata handle.</summary>
364       <returns>The internal handle for the method. Use this handle to access the underlying metadata handle.</returns>
365       <exception cref="T:System.NotSupportedException">This property is not supported on this class.</exception>
366     </member>
367     <member name="P:System.Reflection.Emit.ConstructorBuilder.Module">
368       <summary>Gets the dynamic module in which this constructor is defined.</summary>
369       <returns>A <see cref="T:System.Reflection.Module" /> object that represents the dynamic module in which this constructor is defined.</returns>
370     </member>
371     <member name="P:System.Reflection.Emit.ConstructorBuilder.Name">
372       <summary>Retrieves the name of this constructor.</summary>
373       <returns>The name of this constructor.</returns>
374     </member>
375     <member name="P:System.Reflection.Emit.ConstructorBuilder.ReflectedType">
376       <summary>Holds a reference to the <see cref="T:System.Type" /> object from which this object was obtained.</summary>
377       <returns>The <see langword="Type" /> object from which this object was obtained.</returns>
378     </member>
379     <member name="M:System.Reflection.Emit.ConstructorBuilder.SetCustomAttribute(System.Reflection.ConstructorInfo,System.Byte[])">
380       <summary>Set a custom attribute using a specified custom attribute blob.</summary>
381       <param name="con">The constructor for the custom attribute.</param>
382       <param name="binaryAttribute">A byte blob representing the attributes.</param>
383       <exception cref="T:System.ArgumentNullException">
384         <paramref name="con" /> or <paramref name="binaryAttribute" /> is <see langword="null" />.</exception>
385     </member>
386     <member name="M:System.Reflection.Emit.ConstructorBuilder.SetCustomAttribute(System.Reflection.Emit.CustomAttributeBuilder)">
387       <summary>Set a custom attribute using a custom attribute builder.</summary>
388       <param name="customBuilder">An instance of a helper class to define the custom attribute.</param>
389       <exception cref="T:System.ArgumentNullException">
390         <paramref name="customBuilder" /> is <see langword="null" />.</exception>
391     </member>
392     <member name="M:System.Reflection.Emit.ConstructorBuilder.SetImplementationFlags(System.Reflection.MethodImplAttributes)">
393       <summary>Sets the method implementation flags for this constructor.</summary>
394       <param name="attributes">The method implementation flags.</param>
395       <exception cref="T:System.InvalidOperationException">The containing type has been created using <see cref="M:System.Reflection.Emit.TypeBuilder.CreateType" />.</exception>
396     </member>
397     <member name="M:System.Reflection.Emit.ConstructorBuilder.ToString">
398       <summary>Returns this <see cref="T:System.Reflection.Emit.ConstructorBuilder" /> instance as a <see cref="T:System.String" />.</summary>
399       <returns>A string containing the name, attributes, and exceptions of this constructor, followed by the current Microsoft intermediate language (MSIL) stream.</returns>
400     </member>
401     <member name="T:System.Reflection.Emit.EnumBuilder">
402       <summary>Describes and represents an enumeration type.</summary>
403     </member>
404     <member name="P:System.Reflection.Emit.EnumBuilder.Assembly">
405       <summary>Retrieves the dynamic assembly that contains this enum definition.</summary>
406       <returns>Read-only. The dynamic assembly that contains this enum definition.</returns>
407     </member>
408     <member name="P:System.Reflection.Emit.EnumBuilder.AssemblyQualifiedName">
409       <summary>Returns the full path of this enum qualified by the display name of the parent assembly.</summary>
410       <returns>Read-only. The full path of this enum qualified by the display name of the parent assembly.</returns>
411     </member>
412     <member name="P:System.Reflection.Emit.EnumBuilder.BaseType">
413       <summary>Returns the parent <see cref="T:System.Type" /> of this type which is always <see cref="T:System.Enum" />.</summary>
414       <returns>Read-only. The parent <see cref="T:System.Type" /> of this type.</returns>
415     </member>
416     <member name="M:System.Reflection.Emit.EnumBuilder.CreateTypeInfo">
417       <summary>Gets a <see cref="T:System.Reflection.TypeInfo" /> object that represents this enumeration.</summary>
418       <returns>An object that represents this enumeration.</returns>
419     </member>
420     <member name="P:System.Reflection.Emit.EnumBuilder.DeclaringType">
421       <summary>Returns the type that declared this <see cref="T:System.Reflection.Emit.EnumBuilder" />.</summary>
422       <returns>Read-only. The type that declared this <see cref="T:System.Reflection.Emit.EnumBuilder" />.</returns>
423     </member>
424     <member name="M:System.Reflection.Emit.EnumBuilder.DefineLiteral(System.String,System.Object)">
425       <summary>Defines the named static field in an enumeration type with the specified constant value.</summary>
426       <param name="literalName">The name of the static field.</param>
427       <param name="literalValue">The constant value of the literal.</param>
428       <returns>The defined field.</returns>
429     </member>
430     <member name="P:System.Reflection.Emit.EnumBuilder.FullName">
431       <summary>Returns the full path of this enum.</summary>
432       <returns>Read-only. The full path of this enum.</returns>
433     </member>
434     <member name="M:System.Reflection.Emit.EnumBuilder.GetConstructors(System.Reflection.BindingFlags)">
435       <summary>Returns an array of <see cref="T:System.Reflection.ConstructorInfo" /> objects representing the public and non-public constructors defined for this class, as specified.</summary>
436       <param name="bindingAttr">This must be a bit flag from <see cref="T:System.Reflection.BindingFlags" /> : <see langword="InvokeMethod" />, <see langword="NonPublic" />, and so on.</param>
437       <returns>Returns an array of <see cref="T:System.Reflection.ConstructorInfo" /> objects representing the specified constructors defined for this class. If no constructors are defined, an empty array is returned.</returns>
438       <exception cref="T:System.NotSupportedException">This method is not currently supported in types that are not complete.</exception>
439     </member>
440     <member name="M:System.Reflection.Emit.EnumBuilder.GetCustomAttributes(System.Boolean)">
441       <summary>Returns all the custom attributes defined for this constructor.</summary>
442       <param name="inherit">Specifies whether to search this member's inheritance chain to find the attributes.</param>
443       <returns>Returns an array of objects representing all the custom attributes of the constructor represented by this <see cref="T:System.Reflection.Emit.ConstructorBuilder" /> instance.</returns>
444       <exception cref="T:System.NotSupportedException">This method is not currently supported in types that are not complete.</exception>
445     </member>
446     <member name="M:System.Reflection.Emit.EnumBuilder.GetCustomAttributes(System.Type,System.Boolean)">
447       <summary>Returns the custom attributes identified by the given type.</summary>
448       <param name="attributeType">The <see langword="Type" /> object to which the custom attributes are applied.</param>
449       <param name="inherit">Specifies whether to search this member's inheritance chain to find the attributes.</param>
450       <returns>Returns an array of objects representing the attributes of this constructor that are of <see cref="T:System.Type" /><paramref name="attributeType" />.</returns>
451       <exception cref="T:System.NotSupportedException">This method is not currently supported in types that are not complete.</exception>
452     </member>
453     <member name="M:System.Reflection.Emit.EnumBuilder.GetElementType">
454       <summary>Calling this method always throws <see cref="T:System.NotSupportedException" />.</summary>
455       <returns>This method is not supported. No value is returned.</returns>
456       <exception cref="T:System.NotSupportedException">This method is not currently supported.</exception>
457     </member>
458     <member name="M:System.Reflection.Emit.EnumBuilder.GetEnumUnderlyingType">
459       <summary>Returns the underlying integer type of the current enumeration, which is set when the enumeration builder is defined.</summary>
460       <returns>The underlying type.</returns>
461     </member>
462     <member name="M:System.Reflection.Emit.EnumBuilder.GetEvent(System.String,System.Reflection.BindingFlags)">
463       <summary>Returns the event with the specified name.</summary>
464       <param name="name">The name of the event to get.</param>
465       <param name="bindingAttr">This invocation attribute. This must be a bit flag from <see cref="T:System.Reflection.BindingFlags" /> : <see langword="InvokeMethod" />, <see langword="NonPublic" />, and so on.</param>
466       <returns>Returns an <see cref="T:System.Reflection.EventInfo" /> object representing the event declared or inherited by this type with the specified name. If there are no matches, <see langword="null" /> is returned.</returns>
467       <exception cref="T:System.NotSupportedException">This method is not currently supported in types that are not complete.</exception>
468     </member>
469     <member name="M:System.Reflection.Emit.EnumBuilder.GetEvents">
470       <summary>Returns the events for the public events declared or inherited by this type.</summary>
471       <returns>Returns an array of <see cref="T:System.Reflection.EventInfo" /> objects representing the public events declared or inherited by this type. An empty array is returned if there are no public events.</returns>
472       <exception cref="T:System.NotSupportedException">This method is not currently supported in types that are not complete.</exception>
473     </member>
474     <member name="M:System.Reflection.Emit.EnumBuilder.GetEvents(System.Reflection.BindingFlags)">
475       <summary>Returns the public and non-public events that are declared by this type.</summary>
476       <param name="bindingAttr">This must be a bit flag from <see cref="T:System.Reflection.BindingFlags" />, such as <see langword="InvokeMethod" />, <see langword="NonPublic" />, and so on.</param>
477       <returns>Returns an array of <see cref="T:System.Reflection.EventInfo" /> 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>
478       <exception cref="T:System.NotSupportedException">This method is not currently supported in types that are not complete.</exception>
479     </member>
480     <member name="M:System.Reflection.Emit.EnumBuilder.GetField(System.String,System.Reflection.BindingFlags)">
481       <summary>Returns the field specified by the given name.</summary>
482       <param name="name">The name of the field to get.</param>
483       <param name="bindingAttr">This must be a bit flag from <see cref="T:System.Reflection.BindingFlags" /> : <see langword="InvokeMethod" />, <see langword="NonPublic" />, and so on.</param>
484       <returns>Returns the <see cref="T:System.Reflection.FieldInfo" /> 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>
485       <exception cref="T:System.NotSupportedException">This method is not currently supported in types that are not complete.</exception>
486     </member>
487     <member name="M:System.Reflection.Emit.EnumBuilder.GetFields(System.Reflection.BindingFlags)">
488       <summary>Returns the public and non-public fields that are declared by this type.</summary>
489       <param name="bindingAttr">This must be a bit flag from <see cref="T:System.Reflection.BindingFlags" />, such as InvokeMethod, NonPublic, and so on.</param>
490       <returns>Returns an array of <see cref="T:System.Reflection.FieldInfo" /> 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>
491       <exception cref="T:System.NotSupportedException">This method is not currently supported in types that are not complete.</exception>
492     </member>
493     <member name="M:System.Reflection.Emit.EnumBuilder.GetInterface(System.String,System.Boolean)">
494       <summary>Returns the interface implemented (directly or indirectly) by this type, with the specified fully-qualified name.</summary>
495       <param name="name">The name of the interface.</param>
496       <param name="ignoreCase">If <see langword="true" />, the search is case-insensitive. If <see langword="false" />, the search is case-sensitive.</param>
497       <returns>Returns a <see cref="T:System.Type" /> object representing the implemented interface. Returns null if no interface matching name is found.</returns>
498       <exception cref="T:System.NotSupportedException">This method is not currently supported in types that are not complete.</exception>
499     </member>
500     <member name="M:System.Reflection.Emit.EnumBuilder.GetInterfaceMap(System.Type)">
501       <summary>Returns an interface mapping for the interface requested.</summary>
502       <param name="interfaceType">The type of the interface for which the interface mapping is to be retrieved.</param>
503       <returns>The requested interface mapping.</returns>
504       <exception cref="T:System.ArgumentException">The type does not implement the interface.</exception>
505     </member>
506     <member name="M:System.Reflection.Emit.EnumBuilder.GetInterfaces">
507       <summary>Returns an array of all the interfaces implemented on this a class and its base classes.</summary>
508       <returns>Returns an array of <see cref="T:System.Type" /> objects representing the implemented interfaces. If none are defined, an empty array is returned.</returns>
509     </member>
510     <member name="M:System.Reflection.Emit.EnumBuilder.GetMember(System.String,System.Reflection.MemberTypes,System.Reflection.BindingFlags)">
511       <summary>Returns all members with the specified name, type, and binding that are declared or inherited by this type.</summary>
512       <param name="name">The name of the member.</param>
513       <param name="type">The type of member that is to be returned.</param>
514       <param name="bindingAttr">This must be a bit flag from <see cref="T:System.Reflection.BindingFlags" /> : <see langword="InvokeMethod" />, <see langword="NonPublic" />, and so on.</param>
515       <returns>Returns an array of <see cref="T:System.Reflection.MemberInfo" /> objects representing the public and non-public members defined on this type if <paramref name="nonPublic" /> is used; otherwise, only the public members are returned.</returns>
516       <exception cref="T:System.NotSupportedException">This method is not currently supported in types that are not complete.</exception>
517     </member>
518     <member name="M:System.Reflection.Emit.EnumBuilder.GetMembers(System.Reflection.BindingFlags)">
519       <summary>Returns the specified members declared or inherited by this type,.</summary>
520       <param name="bindingAttr">This must be a bit flag from <see cref="T:System.Reflection.BindingFlags" /> : <see langword="InvokeMethod" />, <see langword="NonPublic" />, and so on.</param>
521       <returns>Returns an array of <see cref="T:System.Reflection.MemberInfo" /> 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>
522       <exception cref="T:System.NotSupportedException">This method is not currently supported in types that are not complete.</exception>
523     </member>
524     <member name="M:System.Reflection.Emit.EnumBuilder.GetMethods(System.Reflection.BindingFlags)">
525       <summary>Returns all the public and non-public methods declared or inherited by this type, as specified.</summary>
526       <param name="bindingAttr">This must be a bit flag from <see cref="T:System.Reflection.BindingFlags" />, such as <see langword="InvokeMethod" />, <see langword="NonPublic" />, and so on.</param>
527       <returns>Returns an array of <see cref="T:System.Reflection.MethodInfo" /> objects representing the public and non-public methods defined on this type if <paramref name="nonPublic" /> is used; otherwise, only the public methods are returned.</returns>
528       <exception cref="T:System.NotSupportedException">This method is not currently supported in types that are not complete.</exception>
529     </member>
530     <member name="M:System.Reflection.Emit.EnumBuilder.GetNestedType(System.String,System.Reflection.BindingFlags)">
531       <summary>Returns the specified nested type that is declared by this type.</summary>
532       <param name="name">The <see cref="T:System.String" /> containing the name of the nested type to get.</param>
533       <param name="bindingAttr">A bitmask comprised of one or more <see cref="T:System.Reflection.BindingFlags" /> that specify how the search is conducted.
534 -or-
535 Zero, to conduct a case-sensitive search for public methods.</param>
536       <returns>A <see cref="T:System.Type" /> object representing the nested type that matches the specified requirements, if found; otherwise, <see langword="null" />.</returns>
537       <exception cref="T:System.NotSupportedException">This method is not currently supported in types that are not complete.</exception>
538     </member>
539     <member name="M:System.Reflection.Emit.EnumBuilder.GetNestedTypes(System.Reflection.BindingFlags)">
540       <summary>Returns the public and non-public nested types that are declared or inherited by this type.</summary>
541       <param name="bindingAttr">This must be a bit flag from <see cref="T:System.Reflection.BindingFlags" />, such as <see langword="InvokeMethod" />, <see langword="NonPublic" />, and so on.</param>
542       <returns>An array of <see cref="T:System.Type" /> objects representing all the types nested within the current <see cref="T:System.Type" /> that match the specified binding constraints.
543 An empty array of type <see cref="T:System.Type" />, if no types are nested within the current <see cref="T:System.Type" />, or if none of the nested types match the binding constraints.</returns>
544       <exception cref="T:System.NotSupportedException">This method is not currently supported in types that are not complete.</exception>
545     </member>
546     <member name="M:System.Reflection.Emit.EnumBuilder.GetProperties(System.Reflection.BindingFlags)">
547       <summary>Returns all the public and non-public properties declared or inherited by this type, as specified.</summary>
548       <param name="bindingAttr">This invocation attribute. This must be a bit flag from <see cref="T:System.Reflection.BindingFlags" /> : <see langword="InvokeMethod" />, <see langword="NonPublic" />, and so on.</param>
549       <returns>Returns an array of <see cref="T:System.Reflection.PropertyInfo" /> objects representing the public and non-public properties defined on this type if <paramref name="nonPublic" /> is used; otherwise, only the public properties are returned.</returns>
550       <exception cref="T:System.NotSupportedException">This method is not currently supported in types that are not complete.</exception>
551     </member>
552     <member name="P:System.Reflection.Emit.EnumBuilder.GUID">
553       <summary>Returns the GUID of this enum.</summary>
554       <returns>Read-only. The GUID of this enum.</returns>
555       <exception cref="T:System.NotSupportedException">This method is not currently supported in types that are not complete.</exception>
556     </member>
557     <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[])">
558       <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>
559       <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>
560       <param name="invokeAttr">The invocation attribute. This must be a bit flag from <see langword="BindingFlags" />.</param>
561       <param name="binder">An object that enables the binding, coercion of argument types, invocation of members, and retrieval of <see langword="MemberInfo" /> objects using reflection. If binder is <see langword="null" />, the default binder is used. See <see cref="T:System.Reflection.Binder" />.</param>
562       <param name="target">The object on which to invoke the specified member. If the member is static, this parameter is ignored.</param>
563       <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>
564       <param name="modifiers">An array of the same length as <paramref name="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>
565       <param name="culture">An instance of <see langword="CultureInfo" /> used to govern the coercion of types. If this is null, the <see langword="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>
566       <param name="namedParameters">Each parameter in the <paramref name="namedParameters" /> array gets the value in the corresponding element in the <paramref name="args" /> array. If the length of <paramref name="args" /> is greater than the length of <paramref name="namedParameters" />, the remaining argument values are passed in order.</param>
567       <returns>Returns the return value of the invoked member.</returns>
568       <exception cref="T:System.NotSupportedException">This method is not currently supported in types that are not complete.</exception>
569     </member>
570     <member name="P:System.Reflection.Emit.EnumBuilder.IsByRefLike" />
571     <member name="P:System.Reflection.Emit.EnumBuilder.IsConstructedGenericType">
572       <summary>Gets a value that indicates whether this object represents a constructed generic type.</summary>
573       <returns>
574         <see langword="true" /> if this object represents a constructed generic type; otherwise, <see langword="false" />.</returns>
575     </member>
576     <member name="M:System.Reflection.Emit.EnumBuilder.IsDefined(System.Type,System.Boolean)">
577       <summary>Checks if the specified custom attribute type is defined.</summary>
578       <param name="attributeType">The <see langword="Type" /> object to which the custom attributes are applied.</param>
579       <param name="inherit">Specifies whether to search this member's inheritance chain to find the attributes.</param>
580       <returns>
581         <see langword="true" /> if one or more instance of <paramref name="attributeType" /> is defined on this member; otherwise, <see langword="false" />.</returns>
582       <exception cref="T:System.NotSupportedException">This method is not currently supported in types that are not complete.</exception>
583     </member>
584     <member name="P:System.Reflection.Emit.EnumBuilder.IsSZArray" />
585     <member name="P:System.Reflection.Emit.EnumBuilder.IsTypeDefinition" />
586     <member name="P:System.Reflection.Emit.EnumBuilder.IsVariableBoundArray" />
587     <member name="M:System.Reflection.Emit.EnumBuilder.MakeArrayType">
588       <summary>Returns a <see cref="T:System.Type" /> object representing a one-dimensional array of the current type, with a lower bound of zero.</summary>
589       <returns>A <see cref="T:System.Type" /> object representing a one-dimensional array of the current type, with a lower bound of zero.</returns>
590     </member>
591     <member name="M:System.Reflection.Emit.EnumBuilder.MakeArrayType(System.Int32)">
592       <summary>Returns a <see cref="T:System.Type" /> object representing an array of the current type, with the specified number of dimensions.</summary>
593       <param name="rank">The number of dimensions for the array. This number must be less than or equal to 32.</param>
594       <returns>An object representing an array of the current type, with the specified number of dimensions.</returns>
595       <exception cref="T:System.IndexOutOfRangeException">
596         <paramref name="rank" /> is less than 1.</exception>
597     </member>
598     <member name="M:System.Reflection.Emit.EnumBuilder.MakeByRefType">
599       <summary>Returns a <see cref="T:System.Type" /> object that represents the current type when passed as a ref parameter (ByRef parameter in Visual Basic).</summary>
600       <returns>A <see cref="T:System.Type" /> object that represents the current type when passed as a ref parameter (ByRef parameter in Visual Basic).</returns>
601     </member>
602     <member name="M:System.Reflection.Emit.EnumBuilder.MakePointerType">
603       <summary>Returns a <see cref="T:System.Type" /> object that represents a pointer to the current type.</summary>
604       <returns>A <see cref="T:System.Type" /> object that represents a pointer to the current type.</returns>
605     </member>
606     <member name="P:System.Reflection.Emit.EnumBuilder.Module">
607       <summary>Retrieves the dynamic module that contains this <see cref="T:System.Reflection.Emit.EnumBuilder" /> definition.</summary>
608       <returns>Read-only. The dynamic module that contains this <see cref="T:System.Reflection.Emit.EnumBuilder" /> definition.</returns>
609     </member>
610     <member name="P:System.Reflection.Emit.EnumBuilder.Name">
611       <summary>Returns the name of this enum.</summary>
612       <returns>Read-only. The name of this enum.</returns>
613     </member>
614     <member name="P:System.Reflection.Emit.EnumBuilder.Namespace">
615       <summary>Returns the namespace of this enum.</summary>
616       <returns>Read-only. The namespace of this enum.</returns>
617     </member>
618     <member name="P:System.Reflection.Emit.EnumBuilder.ReflectedType">
619       <summary>Returns the type that was used to obtain this <see cref="T:System.Reflection.Emit.EnumBuilder" />.</summary>
620       <returns>Read-only. The type that was used to obtain this <see cref="T:System.Reflection.Emit.EnumBuilder" />.</returns>
621     </member>
622     <member name="M:System.Reflection.Emit.EnumBuilder.SetCustomAttribute(System.Reflection.ConstructorInfo,System.Byte[])">
623       <summary>Sets a custom attribute using a specified custom attribute blob.</summary>
624       <param name="con">The constructor for the custom attribute.</param>
625       <param name="binaryAttribute">A byte blob representing the attributes.</param>
626       <exception cref="T:System.ArgumentNullException">
627         <paramref name="con" /> or <paramref name="binaryAttribute" /> is <see langword="null" />.</exception>
628     </member>
629     <member name="M:System.Reflection.Emit.EnumBuilder.SetCustomAttribute(System.Reflection.Emit.CustomAttributeBuilder)">
630       <summary>Sets a custom attribute using a custom attribute builder.</summary>
631       <param name="customBuilder">An instance of a helper class to define the custom attribute.</param>
632       <exception cref="T:System.ArgumentNullException">
633         <paramref name="con" /> is <see langword="null" />.</exception>
634     </member>
635     <member name="P:System.Reflection.Emit.EnumBuilder.TypeHandle">
636       <summary>Retrieves the internal handle for this enum.</summary>
637       <returns>Read-only. The internal handle for this enum.</returns>
638       <exception cref="T:System.NotSupportedException">This property is not currently supported.</exception>
639     </member>
640     <member name="P:System.Reflection.Emit.EnumBuilder.UnderlyingField">
641       <summary>Returns the underlying field for this enum.</summary>
642       <returns>Read-only. The underlying field for this enum.</returns>
643     </member>
644     <member name="P:System.Reflection.Emit.EnumBuilder.UnderlyingSystemType">
645       <summary>Returns the underlying system type for this enum.</summary>
646       <returns>Read-only. Returns the underlying system type.</returns>
647     </member>
648     <member name="T:System.Reflection.Emit.EventBuilder">
649       <summary>Defines events for a class.</summary>
650     </member>
651     <member name="M:System.Reflection.Emit.EventBuilder.AddOtherMethod(System.Reflection.Emit.MethodBuilder)">
652       <summary>Adds one of the "other" methods associated with this event. "Other" methods are methods other than the "on" and "raise" methods associated with an event. This function can be called many times to add as many "other" methods.</summary>
653       <param name="mdBuilder">A <see langword="MethodBuilder" /> object that represents the other method.</param>
654       <exception cref="T:System.ArgumentNullException">
655         <paramref name="mdBuilder" /> is <see langword="null" />.</exception>
656       <exception cref="T:System.InvalidOperationException">
657         <see cref="M:System.Reflection.Emit.TypeBuilder.CreateType" /> has been called on the enclosing type.</exception>
658     </member>
659     <member name="M:System.Reflection.Emit.EventBuilder.SetAddOnMethod(System.Reflection.Emit.MethodBuilder)">
660       <summary>Sets the method used to subscribe to this event.</summary>
661       <param name="mdBuilder">A <see langword="MethodBuilder" /> object that represents the method used to subscribe to this event.</param>
662       <exception cref="T:System.ArgumentNullException">
663         <paramref name="mdBuilder" /> is <see langword="null" />.</exception>
664       <exception cref="T:System.InvalidOperationException">
665         <see cref="M:System.Reflection.Emit.TypeBuilder.CreateType" /> has been called on the enclosing type.</exception>
666     </member>
667     <member name="M:System.Reflection.Emit.EventBuilder.SetCustomAttribute(System.Reflection.ConstructorInfo,System.Byte[])">
668       <summary>Set a custom attribute using a specified custom attribute blob.</summary>
669       <param name="con">The constructor for the custom attribute.</param>
670       <param name="binaryAttribute">A byte blob representing the attributes.</param>
671       <exception cref="T:System.ArgumentNullException">
672         <paramref name="con" /> or <paramref name="binaryAttribute" /> is <see langword="null" />.</exception>
673       <exception cref="T:System.InvalidOperationException">
674         <see cref="M:System.Reflection.Emit.TypeBuilder.CreateType" /> has been called on the enclosing type.</exception>
675     </member>
676     <member name="M:System.Reflection.Emit.EventBuilder.SetCustomAttribute(System.Reflection.Emit.CustomAttributeBuilder)">
677       <summary>Sets a custom attribute using a custom attribute builder.</summary>
678       <param name="customBuilder">An instance of a helper class to describe the custom attribute.</param>
679       <exception cref="T:System.ArgumentNullException">
680         <paramref name="con" /> is <see langword="null" />.</exception>
681       <exception cref="T:System.InvalidOperationException">
682         <see cref="M:System.Reflection.Emit.TypeBuilder.CreateType" /> has been called on the enclosing type.</exception>
683     </member>
684     <member name="M:System.Reflection.Emit.EventBuilder.SetRaiseMethod(System.Reflection.Emit.MethodBuilder)">
685       <summary>Sets the method used to raise this event.</summary>
686       <param name="mdBuilder">A <see langword="MethodBuilder" /> object that represents the method used to raise this event.</param>
687       <exception cref="T:System.ArgumentNullException">
688         <paramref name="mdBuilder" /> is <see langword="null" />.</exception>
689       <exception cref="T:System.InvalidOperationException">
690         <see cref="M:System.Reflection.Emit.TypeBuilder.CreateType" /> has been called on the enclosing type.</exception>
691     </member>
692     <member name="M:System.Reflection.Emit.EventBuilder.SetRemoveOnMethod(System.Reflection.Emit.MethodBuilder)">
693       <summary>Sets the method used to unsubscribe to this event.</summary>
694       <param name="mdBuilder">A <see langword="MethodBuilder" /> object that represents the method used to unsubscribe to this event.</param>
695       <exception cref="T:System.ArgumentNullException">
696         <paramref name="mdBuilder" /> is <see langword="null" />.</exception>
697       <exception cref="T:System.InvalidOperationException">
698         <see cref="M:System.Reflection.Emit.TypeBuilder.CreateType" /> has been called on the enclosing type.</exception>
699     </member>
700     <member name="T:System.Reflection.Emit.FieldBuilder">
701       <summary>Defines and represents a field. This class cannot be inherited.</summary>
702     </member>
703     <member name="P:System.Reflection.Emit.FieldBuilder.Attributes">
704       <summary>Indicates the attributes of this field. This property is read-only.</summary>
705       <returns>The attributes of this field.</returns>
706     </member>
707     <member name="P:System.Reflection.Emit.FieldBuilder.DeclaringType">
708       <summary>Indicates a reference to the <see cref="T:System.Type" /> object for the type that declares this field. This property is read-only.</summary>
709       <returns>A reference to the <see cref="T:System.Type" /> object for the type that declares this field.</returns>
710     </member>
711     <member name="P:System.Reflection.Emit.FieldBuilder.FieldHandle">
712       <summary>Indicates the internal metadata handle for this field. This property is read-only.</summary>
713       <returns>The internal metadata handle for this field.</returns>
714       <exception cref="T:System.NotSupportedException">This method is not supported.</exception>
715     </member>
716     <member name="P:System.Reflection.Emit.FieldBuilder.FieldType">
717       <summary>Indicates the <see cref="T:System.Type" /> object that represents the type of this field. This property is read-only.</summary>
718       <returns>The <see cref="T:System.Type" /> object that represents the type of this field.</returns>
719     </member>
720     <member name="M:System.Reflection.Emit.FieldBuilder.GetCustomAttributes(System.Boolean)">
721       <summary>Returns all the custom attributes defined for this field.</summary>
722       <param name="inherit">Controls inheritance of custom attributes from base classes.</param>
723       <returns>An array of type <see cref="T:System.Object" /> representing all the custom attributes of the constructor represented by this <see cref="T:System.Reflection.Emit.FieldBuilder" /> instance.</returns>
724       <exception cref="T:System.NotSupportedException">This method is not supported.</exception>
725     </member>
726     <member name="M:System.Reflection.Emit.FieldBuilder.GetCustomAttributes(System.Type,System.Boolean)">
727       <summary>Returns all the custom attributes defined for this field identified by the given type.</summary>
728       <param name="attributeType">The custom attribute type.</param>
729       <param name="inherit">Controls inheritance of custom attributes from base classes.</param>
730       <returns>An array of type <see cref="T:System.Object" /> representing all the custom attributes of the constructor represented by this <see cref="T:System.Reflection.Emit.FieldBuilder" /> instance.</returns>
731       <exception cref="T:System.NotSupportedException">This method is not supported.</exception>
732     </member>
733     <member name="M:System.Reflection.Emit.FieldBuilder.GetValue(System.Object)">
734       <summary>Retrieves the value of the field supported by the given object.</summary>
735       <param name="obj">The object on which to access the field.</param>
736       <returns>An <see cref="T:System.Object" /> containing the value of the field reflected by this instance.</returns>
737       <exception cref="T:System.NotSupportedException">This method is not supported.</exception>
738     </member>
739     <member name="M:System.Reflection.Emit.FieldBuilder.IsDefined(System.Type,System.Boolean)">
740       <summary>Indicates whether an attribute having the specified type is defined on a field.</summary>
741       <param name="attributeType">The type of the attribute.</param>
742       <param name="inherit">Controls inheritance of custom attributes from base classes.</param>
743       <returns>
744         <see langword="true" /> if one or more instance of <paramref name="attributeType" /> is defined on this field; otherwise, <see langword="false" />.</returns>
745       <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)" /> and call <see cref="M:System.Reflection.MemberInfo.IsDefined(System.Type,System.Boolean)" /> on the returned <see cref="T:System.Reflection.FieldInfo" />.</exception>
746     </member>
747     <member name="P:System.Reflection.Emit.FieldBuilder.Module">
748       <summary>Gets the module in which the type that contains this field is being defined.</summary>
749       <returns>A <see cref="T:System.Reflection.Module" /> that represents the dynamic module in which this field is being defined.</returns>
750     </member>
751     <member name="P:System.Reflection.Emit.FieldBuilder.Name">
752       <summary>Indicates the name of this field. This property is read-only.</summary>
753       <returns>A <see cref="T:System.String" /> containing the name of this field.</returns>
754     </member>
755     <member name="P:System.Reflection.Emit.FieldBuilder.ReflectedType">
756       <summary>Indicates the reference to the <see cref="T:System.Type" /> object from which this object was obtained. This property is read-only.</summary>
757       <returns>A reference to the <see cref="T:System.Type" /> object from which this instance was obtained.</returns>
758     </member>
759     <member name="M:System.Reflection.Emit.FieldBuilder.SetConstant(System.Object)">
760       <summary>Sets the default value of this field.</summary>
761       <param name="defaultValue">The new default value for this field.</param>
762       <exception cref="T:System.InvalidOperationException">The containing type has been created using <see cref="M:System.Reflection.Emit.TypeBuilder.CreateType" />.</exception>
763       <exception cref="T:System.ArgumentException">The field is not one of the supported types.
764 -or-
765 The type of <paramref name="defaultValue" /> does not match the type of the field.
766 -or-
767 The field is of type <see cref="T:System.Object" /> or other reference type, <paramref name="defaultValue" /> is not <see langword="null" />, and the value cannot be assigned to the reference type.</exception>
768     </member>
769     <member name="M:System.Reflection.Emit.FieldBuilder.SetCustomAttribute(System.Reflection.ConstructorInfo,System.Byte[])">
770       <summary>Sets a custom attribute using a specified custom attribute blob.</summary>
771       <param name="con">The constructor for the custom attribute.</param>
772       <param name="binaryAttribute">A byte blob representing the attributes.</param>
773       <exception cref="T:System.ArgumentNullException">
774         <paramref name="con" /> or <paramref name="binaryAttribute" /> is <see langword="null" />.</exception>
775       <exception cref="T:System.InvalidOperationException">The parent type of this field is complete.</exception>
776     </member>
777     <member name="M:System.Reflection.Emit.FieldBuilder.SetCustomAttribute(System.Reflection.Emit.CustomAttributeBuilder)">
778       <summary>Sets a custom attribute using a custom attribute builder.</summary>
779       <param name="customBuilder">An instance of a helper class to define the custom attribute.</param>
780       <exception cref="T:System.ArgumentNullException">
781         <paramref name="con" /> is <see langword="null" />.</exception>
782       <exception cref="T:System.InvalidOperationException">The parent type of this field is complete.</exception>
783     </member>
784     <member name="M:System.Reflection.Emit.FieldBuilder.SetOffset(System.Int32)">
785       <summary>Specifies the field layout.</summary>
786       <param name="iOffset">The offset of the field within the type containing this field.</param>
787       <exception cref="T:System.InvalidOperationException">The containing type has been created using <see cref="M:System.Reflection.Emit.TypeBuilder.CreateType" />.</exception>
788       <exception cref="T:System.ArgumentException">
789         <paramref name="iOffset" /> is less than zero.</exception>
790     </member>
791     <member name="M:System.Reflection.Emit.FieldBuilder.SetValue(System.Object,System.Object,System.Reflection.BindingFlags,System.Reflection.Binder,System.Globalization.CultureInfo)">
792       <summary>Sets the value of the field supported by the given object.</summary>
793       <param name="obj">The object on which to access the field.</param>
794       <param name="val">The value to assign to the field.</param>
795       <param name="invokeAttr">A member of <see langword="IBinder" /> that specifies the type of binding that is desired (for example, IBinder.CreateInstance, IBinder.ExactBinding).</param>
796       <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>
797       <param name="culture">The software preferences of a particular culture.</param>
798       <exception cref="T:System.NotSupportedException">This method is not supported.</exception>
799     </member>
800     <member name="T:System.Reflection.Emit.GenericTypeParameterBuilder">
801       <summary>Defines and creates generic type parameters for dynamically defined generic types and methods. This class cannot be inherited.</summary>
802     </member>
803     <member name="P:System.Reflection.Emit.GenericTypeParameterBuilder.Assembly">
804       <summary>Gets an <see cref="T:System.Reflection.Assembly" /> object representing the dynamic assembly that contains the generic type definition the current type parameter belongs to.</summary>
805       <returns>An <see cref="T:System.Reflection.Assembly" /> object representing the dynamic assembly that contains the generic type definition the current type parameter belongs to.</returns>
806     </member>
807     <member name="P:System.Reflection.Emit.GenericTypeParameterBuilder.AssemblyQualifiedName">
808       <summary>Gets <see langword="null" /> in all cases.</summary>
809       <returns>A null reference (<see langword="Nothing" /> in Visual Basic) in all cases.</returns>
810     </member>
811     <member name="P:System.Reflection.Emit.GenericTypeParameterBuilder.BaseType">
812       <summary>Gets the base type constraint of the current generic type parameter.</summary>
813       <returns>A <see cref="T:System.Type" /> object that represents the base type constraint of the generic type parameter, or <see langword="null" /> if the type parameter has no base type constraint.</returns>
814     </member>
815     <member name="P:System.Reflection.Emit.GenericTypeParameterBuilder.ContainsGenericParameters">
816       <summary>Gets <see langword="true" /> in all cases.</summary>
817       <returns>
818         <see langword="true" /> in all cases.</returns>
819     </member>
820     <member name="P:System.Reflection.Emit.GenericTypeParameterBuilder.DeclaringMethod">
821       <summary>Gets a <see cref="T:System.Reflection.MethodInfo" /> that represents the declaring method, if the current <see cref="T:System.Reflection.Emit.GenericTypeParameterBuilder" /> represents a type parameter of a generic method.</summary>
822       <returns>A <see cref="T:System.Reflection.MethodInfo" /> that represents the declaring method, if the current <see cref="T:System.Reflection.Emit.GenericTypeParameterBuilder" /> represents a type parameter of a generic method; otherwise, <see langword="null" />.</returns>
823     </member>
824     <member name="P:System.Reflection.Emit.GenericTypeParameterBuilder.DeclaringType">
825       <summary>Gets the generic type definition or generic method definition to which the generic type parameter belongs.</summary>
826       <returns>If the type parameter belongs to a generic type, a <see cref="T:System.Type" /> object representing that generic type; if the type parameter belongs to a generic method, a <see cref="T:System.Type" /> object representing that type that declared that generic method.</returns>
827     </member>
828     <member name="M:System.Reflection.Emit.GenericTypeParameterBuilder.Equals(System.Object)">
829       <summary>Tests whether the given object is an instance of <see langword="EventToken" /> and is equal to the current instance.</summary>
830       <param name="o">The object to be compared with the current instance.</param>
831       <returns>
832         <see langword="true" /> if <paramref name="o" /> is an instance of <see langword="EventToken" /> and equals the current instance; otherwise, <see langword="false" />.</returns>
833     </member>
834     <member name="P:System.Reflection.Emit.GenericTypeParameterBuilder.FullName">
835       <summary>Gets <see langword="null" /> in all cases.</summary>
836       <returns>A null reference (<see langword="Nothing" /> in Visual Basic) in all cases.</returns>
837     </member>
838     <member name="P:System.Reflection.Emit.GenericTypeParameterBuilder.GenericParameterAttributes">
839       <summary>Gets a combination of <see cref="T:System.Reflection.GenericParameterAttributes" /> flags that describe the covariance and special constraints of the current generic type parameter.</summary>
840       <returns>A bitwise combination of values that describes the covariance and special constraints of the current generic type parameter.</returns>
841     </member>
842     <member name="P:System.Reflection.Emit.GenericTypeParameterBuilder.GenericParameterPosition">
843       <summary>Gets the position of the type parameter in the type parameter list of the generic type or method that declared the parameter.</summary>
844       <returns>The position of the type parameter in the type parameter list of the generic type or method that declared the parameter.</returns>
845     </member>
846     <member name="M:System.Reflection.Emit.GenericTypeParameterBuilder.GetConstructors(System.Reflection.BindingFlags)">
847       <summary>Not supported for incomplete generic type parameters.</summary>
848       <param name="bindingAttr">Not supported.</param>
849       <returns>Not supported for incomplete generic type parameters.</returns>
850       <exception cref="T:System.NotSupportedException">In all cases.</exception>
851     </member>
852     <member name="M:System.Reflection.Emit.GenericTypeParameterBuilder.GetCustomAttributes(System.Boolean)">
853       <summary>Not supported for incomplete generic type parameters.</summary>
854       <param name="inherit">Specifies whether to search this member's inheritance chain to find the attributes.</param>
855       <returns>Not supported for incomplete generic type parameters.</returns>
856       <exception cref="T:System.NotSupportedException">In all cases.</exception>
857     </member>
858     <member name="M:System.Reflection.Emit.GenericTypeParameterBuilder.GetCustomAttributes(System.Type,System.Boolean)">
859       <summary>Not supported for incomplete generic type parameters.</summary>
860       <param name="attributeType">The type of attribute to search for. Only attributes that are assignable to this type are returned.</param>
861       <param name="inherit">Specifies whether to search this member's inheritance chain to find the attributes.</param>
862       <returns>Not supported for incomplete generic type parameters.</returns>
863       <exception cref="T:System.NotSupportedException">In all cases.</exception>
864     </member>
865     <member name="M:System.Reflection.Emit.GenericTypeParameterBuilder.GetElementType">
866       <summary>Throws a <see cref="T:System.NotSupportedException" /> in all cases.</summary>
867       <returns>The type referred to by the current array type, pointer type, or <see langword="ByRef" /> type; or <see langword="null" /> if the current type is not an array type, is not a pointer type, and is not passed by reference.</returns>
868       <exception cref="T:System.NotSupportedException">In all cases.</exception>
869     </member>
870     <member name="M:System.Reflection.Emit.GenericTypeParameterBuilder.GetEvent(System.String,System.Reflection.BindingFlags)">
871       <summary>Not supported for incomplete generic type parameters.</summary>
872       <param name="name">Not supported.</param>
873       <param name="bindingAttr">Not supported.</param>
874       <returns>Not supported for incomplete generic type parameters.</returns>
875       <exception cref="T:System.NotSupportedException">In all cases.</exception>
876     </member>
877     <member name="M:System.Reflection.Emit.GenericTypeParameterBuilder.GetEvents">
878       <summary>Not supported for incomplete generic type parameters.</summary>
879       <returns>Not supported for incomplete generic type parameters.</returns>
880       <exception cref="T:System.NotSupportedException">In all cases.</exception>
881     </member>
882     <member name="M:System.Reflection.Emit.GenericTypeParameterBuilder.GetEvents(System.Reflection.BindingFlags)">
883       <summary>Not supported for incomplete generic type parameters.</summary>
884       <param name="bindingAttr">Not supported.</param>
885       <returns>Not supported for incomplete generic type parameters.</returns>
886       <exception cref="T:System.NotSupportedException">In all cases.</exception>
887     </member>
888     <member name="M:System.Reflection.Emit.GenericTypeParameterBuilder.GetField(System.String,System.Reflection.BindingFlags)">
889       <summary>Not supported for incomplete generic type parameters.</summary>
890       <param name="name">Not supported.</param>
891       <param name="bindingAttr">Not supported.</param>
892       <returns>Not supported for incomplete generic type parameters.</returns>
893       <exception cref="T:System.NotSupportedException">In all cases.</exception>
894     </member>
895     <member name="M:System.Reflection.Emit.GenericTypeParameterBuilder.GetFields(System.Reflection.BindingFlags)">
896       <summary>Not supported for incomplete generic type parameters.</summary>
897       <param name="bindingAttr">Not supported.</param>
898       <returns>Not supported for incomplete generic type parameters.</returns>
899       <exception cref="T:System.NotSupportedException">In all cases.</exception>
900     </member>
901     <member name="M:System.Reflection.Emit.GenericTypeParameterBuilder.GetGenericArguments">
902       <summary>Not valid for generic type parameters.</summary>
903       <returns>Not valid for generic type parameters.</returns>
904       <exception cref="T:System.InvalidOperationException">In all cases.</exception>
905     </member>
906     <member name="M:System.Reflection.Emit.GenericTypeParameterBuilder.GetGenericTypeDefinition">
907       <summary>Not valid for generic type parameters.</summary>
908       <returns>Not valid for generic type parameters.</returns>
909       <exception cref="T:System.InvalidOperationException">In all cases.</exception>
910     </member>
911     <member name="M:System.Reflection.Emit.GenericTypeParameterBuilder.GetHashCode">
912       <summary>Returns a 32-bit integer hash code for the current instance.</summary>
913       <returns>A 32-bit integer hash code.</returns>
914     </member>
915     <member name="M:System.Reflection.Emit.GenericTypeParameterBuilder.GetInterface(System.String,System.Boolean)">
916       <summary>Not supported for incomplete generic type parameters.</summary>
917       <param name="name">The name of the interface.</param>
918       <param name="ignoreCase">
919         <see langword="true" /> to search without regard for case; <see langword="false" /> to make a case-sensitive search.</param>
920       <returns>Not supported for incomplete generic type parameters.</returns>
921       <exception cref="T:System.NotSupportedException">In all cases.</exception>
922     </member>
923     <member name="M:System.Reflection.Emit.GenericTypeParameterBuilder.GetInterfaceMap(System.Type)">
924       <summary>Not supported for incomplete generic type parameters.</summary>
925       <param name="interfaceType">A <see cref="T:System.Type" /> object that represents the interface type for which the mapping is to be retrieved.</param>
926       <returns>Not supported for incomplete generic type parameters.</returns>
927       <exception cref="T:System.NotSupportedException">In all cases.</exception>
928     </member>
929     <member name="M:System.Reflection.Emit.GenericTypeParameterBuilder.GetInterfaces">
930       <summary>Not supported for incomplete generic type parameters.</summary>
931       <returns>Not supported for incomplete generic type parameters.</returns>
932       <exception cref="T:System.NotSupportedException">In all cases.</exception>
933     </member>
934     <member name="M:System.Reflection.Emit.GenericTypeParameterBuilder.GetMember(System.String,System.Reflection.MemberTypes,System.Reflection.BindingFlags)">
935       <summary>Not supported for incomplete generic type parameters.</summary>
936       <param name="name">Not supported.</param>
937       <param name="type">Not supported.</param>
938       <param name="bindingAttr">Not supported.</param>
939       <returns>Not supported for incomplete generic type parameters.</returns>
940       <exception cref="T:System.NotSupportedException">In all cases.</exception>
941     </member>
942     <member name="M:System.Reflection.Emit.GenericTypeParameterBuilder.GetMembers(System.Reflection.BindingFlags)">
943       <summary>Not supported for incomplete generic type parameters.</summary>
944       <param name="bindingAttr">Not supported.</param>
945       <returns>Not supported for incomplete generic type parameters.</returns>
946       <exception cref="T:System.NotSupportedException">In all cases.</exception>
947     </member>
948     <member name="M:System.Reflection.Emit.GenericTypeParameterBuilder.GetMethods(System.Reflection.BindingFlags)">
949       <summary>Not supported for incomplete generic type parameters.</summary>
950       <param name="bindingAttr">Not supported.</param>
951       <returns>Not supported for incomplete generic type parameters.</returns>
952       <exception cref="T:System.NotSupportedException">In all cases.</exception>
953     </member>
954     <member name="M:System.Reflection.Emit.GenericTypeParameterBuilder.GetNestedType(System.String,System.Reflection.BindingFlags)">
955       <summary>Not supported for incomplete generic type parameters.</summary>
956       <param name="name">Not supported.</param>
957       <param name="bindingAttr">Not supported.</param>
958       <returns>Not supported for incomplete generic type parameters.</returns>
959       <exception cref="T:System.NotSupportedException">In all cases.</exception>
960     </member>
961     <member name="M:System.Reflection.Emit.GenericTypeParameterBuilder.GetNestedTypes(System.Reflection.BindingFlags)">
962       <summary>Not supported for incomplete generic type parameters.</summary>
963       <param name="bindingAttr">Not supported.</param>
964       <returns>Not supported for incomplete generic type parameters.</returns>
965       <exception cref="T:System.NotSupportedException">In all cases.</exception>
966     </member>
967     <member name="M:System.Reflection.Emit.GenericTypeParameterBuilder.GetProperties(System.Reflection.BindingFlags)">
968       <summary>Not supported for incomplete generic type parameters.</summary>
969       <param name="bindingAttr">Not supported.</param>
970       <returns>Not supported for incomplete generic type parameters.</returns>
971       <exception cref="T:System.NotSupportedException">In all cases.</exception>
972     </member>
973     <member name="P:System.Reflection.Emit.GenericTypeParameterBuilder.GUID">
974       <summary>Not supported for incomplete generic type parameters.</summary>
975       <returns>Not supported for incomplete generic type parameters.</returns>
976       <exception cref="T:System.NotSupportedException">In all cases.</exception>
977     </member>
978     <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[])">
979       <summary>Not supported for incomplete generic type parameters.</summary>
980       <param name="name">Not supported.</param>
981       <param name="invokeAttr">Not supported.</param>
982       <param name="binder">Not supported.</param>
983       <param name="target">Not supported.</param>
984       <param name="args">Not supported.</param>
985       <param name="modifiers">Not supported.</param>
986       <param name="culture">Not supported.</param>
987       <param name="namedParameters">Not supported.</param>
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="M:System.Reflection.Emit.GenericTypeParameterBuilder.IsAssignableFrom(System.Type)">
992       <summary>Throws a <see cref="T:System.NotSupportedException" /> exception in all cases.</summary>
993       <param name="c">The object to test.</param>
994       <returns>Throws a <see cref="T:System.NotSupportedException" /> exception in all cases.</returns>
995       <exception cref="T:System.NotSupportedException">In all cases.</exception>
996     </member>
997     <member name="P:System.Reflection.Emit.GenericTypeParameterBuilder.IsByRefLike" />
998     <member name="P:System.Reflection.Emit.GenericTypeParameterBuilder.IsConstructedGenericType">
999       <summary>Gets a value that indicates whether this object represents a constructed generic type.</summary>
1000       <returns>
1001         <see langword="true" /> if this object represents a constructed generic type; otherwise, <see langword="false" />.</returns>
1002     </member>
1003     <member name="M:System.Reflection.Emit.GenericTypeParameterBuilder.IsDefined(System.Type,System.Boolean)">
1004       <summary>Not supported for incomplete generic type parameters.</summary>
1005       <param name="attributeType">Not supported.</param>
1006       <param name="inherit">Not supported.</param>
1007       <returns>Not supported for incomplete generic type parameters.</returns>
1008       <exception cref="T:System.NotSupportedException">In all cases.</exception>
1009     </member>
1010     <member name="P:System.Reflection.Emit.GenericTypeParameterBuilder.IsGenericParameter">
1011       <summary>Gets <see langword="true" /> in all cases.</summary>
1012       <returns>
1013         <see langword="true" /> in all cases.</returns>
1014     </member>
1015     <member name="P:System.Reflection.Emit.GenericTypeParameterBuilder.IsGenericType">
1016       <summary>Returns <see langword="false" /> in all cases.</summary>
1017       <returns>
1018         <see langword="false" /> in all cases.</returns>
1019     </member>
1020     <member name="P:System.Reflection.Emit.GenericTypeParameterBuilder.IsGenericTypeDefinition">
1021       <summary>Gets <see langword="false" /> in all cases.</summary>
1022       <returns>
1023         <see langword="false" /> in all cases.</returns>
1024     </member>
1025     <member name="M:System.Reflection.Emit.GenericTypeParameterBuilder.IsSubclassOf(System.Type)">
1026       <summary>Not supported for incomplete generic type parameters.</summary>
1027       <param name="c">Not supported.</param>
1028       <returns>Not supported for incomplete generic type parameters.</returns>
1029       <exception cref="T:System.NotSupportedException">In all cases.</exception>
1030     </member>
1031     <member name="P:System.Reflection.Emit.GenericTypeParameterBuilder.IsSZArray" />
1032     <member name="P:System.Reflection.Emit.GenericTypeParameterBuilder.IsTypeDefinition" />
1033     <member name="P:System.Reflection.Emit.GenericTypeParameterBuilder.IsVariableBoundArray" />
1034     <member name="M:System.Reflection.Emit.GenericTypeParameterBuilder.MakeArrayType">
1035       <summary>Returns the type of a one-dimensional array whose element type is the generic type parameter.</summary>
1036       <returns>A <see cref="T:System.Type" /> object that represents the type of a one-dimensional array whose element type is the generic type parameter.</returns>
1037     </member>
1038     <member name="M:System.Reflection.Emit.GenericTypeParameterBuilder.MakeArrayType(System.Int32)">
1039       <summary>Returns the type of an array whose element type is the generic type parameter, with the specified number of dimensions.</summary>
1040       <param name="rank">The number of dimensions for the array.</param>
1041       <returns>A <see cref="T:System.Type" /> object that represents the type of an array whose element type is the generic type parameter, with the specified number of dimensions.</returns>
1042       <exception cref="T:System.IndexOutOfRangeException">
1043         <paramref name="rank" /> is not a valid number of dimensions. For example, its value is less than 1.</exception>
1044     </member>
1045     <member name="M:System.Reflection.Emit.GenericTypeParameterBuilder.MakeByRefType">
1046       <summary>Returns a <see cref="T:System.Type" /> object that represents the current generic type parameter when passed as a reference parameter.</summary>
1047       <returns>A <see cref="T:System.Type" /> object that represents the current generic type parameter when passed as a reference parameter.</returns>
1048     </member>
1049     <member name="M:System.Reflection.Emit.GenericTypeParameterBuilder.MakeGenericType(System.Type[])">
1050       <summary>Not valid for incomplete generic type parameters.</summary>
1051       <param name="typeArguments">An array of type arguments.</param>
1052       <returns>This method is invalid for incomplete generic type parameters.</returns>
1053       <exception cref="T:System.InvalidOperationException">In all cases.</exception>
1054     </member>
1055     <member name="M:System.Reflection.Emit.GenericTypeParameterBuilder.MakePointerType">
1056       <summary>Returns a <see cref="T:System.Type" /> object that represents a pointer to the current generic type parameter.</summary>
1057       <returns>A <see cref="T:System.Type" /> object that represents a pointer to the current generic type parameter.</returns>
1058     </member>
1059     <member name="P:System.Reflection.Emit.GenericTypeParameterBuilder.Module">
1060       <summary>Gets the dynamic module that contains the generic type parameter.</summary>
1061       <returns>A <see cref="T:System.Reflection.Module" /> object that represents the dynamic module that contains the generic type parameter.</returns>
1062     </member>
1063     <member name="P:System.Reflection.Emit.GenericTypeParameterBuilder.Name">
1064       <summary>Gets the name of the generic type parameter.</summary>
1065       <returns>The name of the generic type parameter.</returns>
1066     </member>
1067     <member name="P:System.Reflection.Emit.GenericTypeParameterBuilder.Namespace">
1068       <summary>Gets <see langword="null" /> in all cases.</summary>
1069       <returns>A null reference (<see langword="Nothing" /> in Visual Basic) in all cases.</returns>
1070     </member>
1071     <member name="P:System.Reflection.Emit.GenericTypeParameterBuilder.ReflectedType">
1072       <summary>Gets the <see cref="T:System.Type" /> object that was used to obtain the <see cref="T:System.Reflection.Emit.GenericTypeParameterBuilder" />.</summary>
1073       <returns>The <see cref="T:System.Type" /> object that was used to obtain the <see cref="T:System.Reflection.Emit.GenericTypeParameterBuilder" />.</returns>
1074     </member>
1075     <member name="M:System.Reflection.Emit.GenericTypeParameterBuilder.SetBaseTypeConstraint(System.Type)">
1076       <summary>Sets the base type that a type must inherit in order to be substituted for the type parameter.</summary>
1077       <param name="baseTypeConstraint">The <see cref="T:System.Type" /> that must be inherited by any type that is to be substituted for the type parameter.</param>
1078     </member>
1079     <member name="M:System.Reflection.Emit.GenericTypeParameterBuilder.SetCustomAttribute(System.Reflection.ConstructorInfo,System.Byte[])">
1080       <summary>Sets a custom attribute using a specified custom attribute blob.</summary>
1081       <param name="con">The constructor for the custom attribute.</param>
1082       <param name="binaryAttribute">A byte blob representing the attribute.</param>
1083       <exception cref="T:System.ArgumentNullException">
1084         <paramref name="con" /> is <see langword="null" />.
1085 -or-
1086 <paramref name="binaryAttribute" /> is a null reference.</exception>
1087     </member>
1088     <member name="M:System.Reflection.Emit.GenericTypeParameterBuilder.SetCustomAttribute(System.Reflection.Emit.CustomAttributeBuilder)">
1089       <summary>Set a custom attribute using a custom attribute builder.</summary>
1090       <param name="customBuilder">An instance of a helper class that defines the custom attribute.</param>
1091       <exception cref="T:System.ArgumentNullException">
1092         <paramref name="customBuilder" /> is <see langword="null" />.</exception>
1093     </member>
1094     <member name="M:System.Reflection.Emit.GenericTypeParameterBuilder.SetGenericParameterAttributes(System.Reflection.GenericParameterAttributes)">
1095       <summary>Sets the variance characteristics and special constraints of the generic parameter, such as the parameterless constructor constraint.</summary>
1096       <param name="genericParameterAttributes">A bitwise combination of <see cref="T:System.Reflection.GenericParameterAttributes" /> values that represent the variance characteristics and special constraints of the generic type parameter.</param>
1097     </member>
1098     <member name="M:System.Reflection.Emit.GenericTypeParameterBuilder.SetInterfaceConstraints(System.Type[])">
1099       <summary>Sets the interfaces a type must implement in order to be substituted for the type parameter.</summary>
1100       <param name="interfaceConstraints">An array of <see cref="T:System.Type" /> objects that represent the interfaces a type must implement in order to be substituted for the type parameter.</param>
1101     </member>
1102     <member name="M:System.Reflection.Emit.GenericTypeParameterBuilder.ToString">
1103       <summary>Returns a string representation of the current generic type parameter.</summary>
1104       <returns>A string that contains the name of the generic type parameter.</returns>
1105     </member>
1106     <member name="P:System.Reflection.Emit.GenericTypeParameterBuilder.TypeHandle">
1107       <summary>Not supported for incomplete generic type parameters.</summary>
1108       <returns>Not supported for incomplete generic type parameters.</returns>
1109       <exception cref="T:System.NotSupportedException">In all cases.</exception>
1110     </member>
1111     <member name="P:System.Reflection.Emit.GenericTypeParameterBuilder.UnderlyingSystemType">
1112       <summary>Gets the current generic type parameter.</summary>
1113       <returns>The current <see cref="T:System.Reflection.Emit.GenericTypeParameterBuilder" /> object.</returns>
1114     </member>
1115     <member name="T:System.Reflection.Emit.MethodBuilder">
1116       <summary>Defines and represents a method (or constructor) on a dynamic class.</summary>
1117     </member>
1118     <member name="P:System.Reflection.Emit.MethodBuilder.Attributes">
1119       <summary>Retrieves the attributes for this method.</summary>
1120       <returns>Read-only. Retrieves the <see langword="MethodAttributes" /> for this method.</returns>
1121     </member>
1122     <member name="P:System.Reflection.Emit.MethodBuilder.CallingConvention">
1123       <summary>Returns the calling convention of the method.</summary>
1124       <returns>Read-only. The calling convention of the method.</returns>
1125     </member>
1126     <member name="P:System.Reflection.Emit.MethodBuilder.ContainsGenericParameters">
1127       <summary>Not supported for this type.</summary>
1128       <returns>Not supported.</returns>
1129       <exception cref="T:System.NotSupportedException">The invoked method is not supported in the base class.</exception>
1130     </member>
1131     <member name="P:System.Reflection.Emit.MethodBuilder.DeclaringType">
1132       <summary>Returns the type that declares this method.</summary>
1133       <returns>Read-only. The type that declares this method.</returns>
1134     </member>
1135     <member name="M:System.Reflection.Emit.MethodBuilder.DefineGenericParameters(System.String[])">
1136       <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" /> objects that can be used to define their constraints.</summary>
1137       <param name="names">An array of strings that represent the names of the generic type parameters.</param>
1138       <returns>An array of <see cref="T:System.Reflection.Emit.GenericTypeParameterBuilder" /> objects representing the type parameters of the generic method.</returns>
1139       <exception cref="T:System.InvalidOperationException">Generic type parameters have already been defined for this method.
1140 -or-
1141 The method has been completed already.
1142 -or-
1143 The <see cref="M:System.Reflection.Emit.MethodBuilder.SetImplementationFlags(System.Reflection.MethodImplAttributes)" /> method has been called for the current method.</exception>
1144       <exception cref="T:System.ArgumentNullException">
1145         <paramref name="names" /> is <see langword="null" />.
1146 -or-
1147 An element of <paramref name="names" /> is <see langword="null" />.</exception>
1148       <exception cref="T:System.ArgumentException">
1149         <paramref name="names" /> is an empty array.</exception>
1150     </member>
1151     <member name="M:System.Reflection.Emit.MethodBuilder.DefineParameter(System.Int32,System.Reflection.ParameterAttributes,System.String)">
1152       <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>
1153       <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>
1154       <param name="attributes">The parameter attributes of the parameter.</param>
1155       <param name="strParamName">The name of the parameter. The name can be the null string.</param>
1156       <returns>Returns a <see langword="ParameterBuilder" /> object that represents a parameter of this method or the return value of this method.</returns>
1157       <exception cref="T:System.ArgumentOutOfRangeException">The method has no parameters.
1158 -or-
1159 <paramref name="position" /> is less than zero.
1160 -or-
1161 <paramref name="position" /> is greater than the number of the method's parameters.</exception>
1162       <exception cref="T:System.InvalidOperationException">The containing type was previously created using <see cref="M:System.Reflection.Emit.TypeBuilder.CreateType" />.
1163 -or-
1164 For the current method, the <see cref="P:System.Reflection.Emit.MethodBuilder.IsGenericMethod" /> property is <see langword="true" />, but the <see cref="P:System.Reflection.Emit.MethodBuilder.IsGenericMethodDefinition" /> property is <see langword="false" />.</exception>
1165     </member>
1166     <member name="M:System.Reflection.Emit.MethodBuilder.Equals(System.Object)">
1167       <summary>Determines whether the given object is equal to this instance.</summary>
1168       <param name="obj">The object to compare with this <see langword="MethodBuilder" /> instance.</param>
1169       <returns>
1170         <see langword="true" /> if <paramref name="obj" /> is an instance of <see langword="MethodBuilder" /> and is equal to this object; otherwise, <see langword="false" />.</returns>
1171     </member>
1172     <member name="M:System.Reflection.Emit.MethodBuilder.GetBaseDefinition">
1173       <summary>Return the base implementation for a method.</summary>
1174       <returns>The base implementation of this method.</returns>
1175     </member>
1176     <member name="M:System.Reflection.Emit.MethodBuilder.GetCustomAttributes(System.Boolean)">
1177       <summary>Returns all the custom attributes defined for this method.</summary>
1178       <param name="inherit">Specifies whether to search this member's inheritance chain to find the custom attributes.</param>
1179       <returns>Returns an array of objects representing all the custom attributes of this method.</returns>
1180       <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[])" /> and call <see cref="M:System.Reflection.MemberInfo.GetCustomAttributes(System.Boolean)" /> on the returned <see cref="T:System.Reflection.MethodInfo" />.</exception>
1181     </member>
1182     <member name="M:System.Reflection.Emit.MethodBuilder.GetCustomAttributes(System.Type,System.Boolean)">
1183       <summary>Returns the custom attributes identified by the given type.</summary>
1184       <param name="attributeType">The custom attribute type.</param>
1185       <param name="inherit">Specifies whether to search this member's inheritance chain to find the custom attributes.</param>
1186       <returns>Returns an array of objects representing the attributes of this method that are of type <paramref name="attributeType" />.</returns>
1187       <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[])" /> and call <see cref="M:System.Reflection.MemberInfo.GetCustomAttributes(System.Boolean)" /> on the returned <see cref="T:System.Reflection.MethodInfo" />.</exception>
1188     </member>
1189     <member name="M:System.Reflection.Emit.MethodBuilder.GetGenericArguments">
1190       <summary>Returns an array of <see cref="T:System.Reflection.Emit.GenericTypeParameterBuilder" /> objects that represent the type parameters of the method, if it is generic.</summary>
1191       <returns>An array of <see cref="T:System.Reflection.Emit.GenericTypeParameterBuilder" /> objects representing the type parameters, if the method is generic, or <see langword="null" /> if the method is not generic.</returns>
1192     </member>
1193     <member name="M:System.Reflection.Emit.MethodBuilder.GetGenericMethodDefinition">
1194       <summary>Returns this method.</summary>
1195       <returns>The current instance of <see cref="T:System.Reflection.Emit.MethodBuilder" />.</returns>
1196       <exception cref="T:System.InvalidOperationException">The current method is not generic. That is, the <see cref="P:System.Reflection.Emit.MethodBuilder.IsGenericMethod" /> property returns <see langword="false" />.</exception>
1197     </member>
1198     <member name="M:System.Reflection.Emit.MethodBuilder.GetHashCode">
1199       <summary>Gets the hash code for this method.</summary>
1200       <returns>The hash code for this method.</returns>
1201     </member>
1202     <member name="M:System.Reflection.Emit.MethodBuilder.GetILGenerator">
1203       <summary>Returns an <see langword="ILGenerator" /> for this method with a default Microsoft intermediate language (MSIL) stream size of 64 bytes.</summary>
1204       <returns>Returns an <see langword="ILGenerator" /> object for this method.</returns>
1205       <exception cref="T:System.InvalidOperationException">The method should not have a body because of its <see cref="T:System.Reflection.MethodAttributes" /> or <see cref="T:System.Reflection.MethodImplAttributes" /> flags, for example because it has the <see cref="F:System.Reflection.MethodAttributes.PinvokeImpl" /> flag.
1206 -or-
1207 The method is a generic method, but not a generic method definition. That is, the <see cref="P:System.Reflection.Emit.MethodBuilder.IsGenericMethod" /> property is <see langword="true" />, but the <see cref="P:System.Reflection.Emit.MethodBuilder.IsGenericMethodDefinition" /> property is <see langword="false" />.</exception>
1208     </member>
1209     <member name="M:System.Reflection.Emit.MethodBuilder.GetILGenerator(System.Int32)">
1210       <summary>Returns an <see langword="ILGenerator" /> for this method with the specified Microsoft intermediate language (MSIL) stream size.</summary>
1211       <param name="size">The size of the MSIL stream, in bytes.</param>
1212       <returns>Returns an <see langword="ILGenerator" /> object for this method.</returns>
1213       <exception cref="T:System.InvalidOperationException">The method should not have a body because of its <see cref="T:System.Reflection.MethodAttributes" /> or <see cref="T:System.Reflection.MethodImplAttributes" /> flags, for example because it has the <see cref="F:System.Reflection.MethodAttributes.PinvokeImpl" /> flag.
1214 -or-
1215 The method is a generic method, but not a generic method definition. That is, the <see cref="P:System.Reflection.Emit.MethodBuilder.IsGenericMethod" /> property is <see langword="true" />, but the <see cref="P:System.Reflection.Emit.MethodBuilder.IsGenericMethodDefinition" /> property is <see langword="false" />.</exception>
1216     </member>
1217     <member name="M:System.Reflection.Emit.MethodBuilder.GetMethodImplementationFlags">
1218       <summary>Returns the implementation flags for the method.</summary>
1219       <returns>Returns the implementation flags for the method.</returns>
1220     </member>
1221     <member name="M:System.Reflection.Emit.MethodBuilder.GetParameters">
1222       <summary>Returns the parameters of this method.</summary>
1223       <returns>An array of <see langword="ParameterInfo" /> objects that represent the parameters of the method.</returns>
1224       <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[])" /> and call <see langword="GetParameters" /> on the returned <see cref="T:System.Reflection.MethodInfo" />.</exception>
1225     </member>
1226     <member name="P:System.Reflection.Emit.MethodBuilder.InitLocals">
1227       <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 <see langword="true" />.</summary>
1228       <returns>
1229         <see langword="true" /> if the local variables in this method should be zero initialized; otherwise <see langword="false" />.</returns>
1230       <exception cref="T:System.InvalidOperationException">For the current method, the <see cref="P:System.Reflection.Emit.MethodBuilder.IsGenericMethod" /> property is <see langword="true" />, but the <see cref="P:System.Reflection.Emit.MethodBuilder.IsGenericMethodDefinition" /> property is <see langword="false" />. (Get or set.)</exception>
1231     </member>
1232     <member name="M:System.Reflection.Emit.MethodBuilder.Invoke(System.Object,System.Reflection.BindingFlags,System.Reflection.Binder,System.Object[],System.Globalization.CultureInfo)">
1233       <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>
1234       <param name="obj">The object on which to invoke the specified method. If the method is static, this parameter is ignored.</param>
1235       <param name="invokeAttr">This must be a bit flag from <see cref="T:System.Reflection.BindingFlags" /> : <see langword="InvokeMethod" />, <see langword="NonPublic" />, and so on.</param>
1236       <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 <see langword="null" />, the default binder is used. For more details, see <see cref="T:System.Reflection.Binder" />.</param>
1237       <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 <see langword="null" />.</param>
1238       <param name="culture">An instance of <see cref="T:System.Globalization.CultureInfo" /> used to govern the coercion of types. If this is null, the <see cref="T:System.Globalization.CultureInfo" /> for the current thread is used. (Note that this is necessary to, for example, convert a <see cref="T:System.String" /> that represents 1000 to a <see cref="T:System.Double" /> value, since 1000 is represented differently by different cultures.)</param>
1239       <returns>Returns an object containing the return value of the invoked method.</returns>
1240       <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[])" /> 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[])" /> on the returned <see cref="T:System.Reflection.MethodInfo" />.</exception>
1241     </member>
1242     <member name="P:System.Reflection.Emit.MethodBuilder.IsConstructedGenericMethod" />
1243     <member name="M:System.Reflection.Emit.MethodBuilder.IsDefined(System.Type,System.Boolean)">
1244       <summary>Checks if the specified custom attribute type is defined.</summary>
1245       <param name="attributeType">The custom attribute type.</param>
1246       <param name="inherit">Specifies whether to search this member's inheritance chain to find the custom attributes.</param>
1247       <returns>
1248         <see langword="true" /> if the specified custom attribute type is defined; otherwise, <see langword="false" />.</returns>
1249       <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[])" /> and call <see cref="M:System.Reflection.MemberInfo.IsDefined(System.Type,System.Boolean)" /> on the returned <see cref="T:System.Reflection.MethodInfo" />.</exception>
1250     </member>
1251     <member name="P:System.Reflection.Emit.MethodBuilder.IsGenericMethod">
1252       <summary>Gets a value indicating whether the method is a generic method.</summary>
1253       <returns>
1254         <see langword="true" /> if the method is generic; otherwise, <see langword="false" />.</returns>
1255     </member>
1256     <member name="P:System.Reflection.Emit.MethodBuilder.IsGenericMethodDefinition">
1257       <summary>Gets a value indicating whether the current <see cref="T:System.Reflection.Emit.MethodBuilder" /> object represents the definition of a generic method.</summary>
1258       <returns>
1259         <see langword="true" /> if the current <see cref="T:System.Reflection.Emit.MethodBuilder" /> object represents the definition of a generic method; otherwise, <see langword="false" />.</returns>
1260     </member>
1261     <member name="P:System.Reflection.Emit.MethodBuilder.IsSecurityCritical">
1262       <summary>Throws a <see cref="T:System.NotSupportedException" /> in all cases.</summary>
1263       <returns>Throws a <see cref="T:System.NotSupportedException" /> in all cases.</returns>
1264       <exception cref="T:System.NotSupportedException">In all cases. This property is not supported in dynamic assemblies.</exception>
1265     </member>
1266     <member name="P:System.Reflection.Emit.MethodBuilder.IsSecuritySafeCritical">
1267       <summary>Throws a <see cref="T:System.NotSupportedException" /> in all cases.</summary>
1268       <returns>Throws a <see cref="T:System.NotSupportedException" /> in all cases.</returns>
1269       <exception cref="T:System.NotSupportedException">In all cases. This property is not supported in dynamic assemblies.</exception>
1270     </member>
1271     <member name="P:System.Reflection.Emit.MethodBuilder.IsSecurityTransparent">
1272       <summary>Throws a <see cref="T:System.NotSupportedException" /> in all cases.</summary>
1273       <returns>Throws a <see cref="T:System.NotSupportedException" /> in all cases.</returns>
1274       <exception cref="T:System.NotSupportedException">In all cases. This property is not supported in dynamic assemblies.</exception>
1275     </member>
1276     <member name="M:System.Reflection.Emit.MethodBuilder.MakeGenericMethod(System.Type[])">
1277       <summary>Returns a generic method constructed from the current generic method definition using the specified generic type arguments.</summary>
1278       <param name="typeArguments">An array of <see cref="T:System.Type" /> objects that represent the type arguments for the generic method.</param>
1279       <returns>A <see cref="T:System.Reflection.MethodInfo" /> representing the generic method constructed from the current generic method definition using the specified generic type arguments.</returns>
1280     </member>
1281     <member name="P:System.Reflection.Emit.MethodBuilder.MethodHandle">
1282       <summary>Retrieves the internal handle for the method. Use this handle to access the underlying metadata handle.</summary>
1283       <returns>Read-only. The internal handle for the method. Use this handle to access the underlying metadata handle.</returns>
1284       <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[])" /> and call <see cref="P:System.Reflection.MethodBase.MethodHandle" /> on the returned <see cref="T:System.Reflection.MethodInfo" />.</exception>
1285     </member>
1286     <member name="P:System.Reflection.Emit.MethodBuilder.Module">
1287       <summary>Gets the module in which the current method is being defined.</summary>
1288       <returns>The <see cref="T:System.Reflection.Module" /> in which the member represented by the current <see cref="T:System.Reflection.MemberInfo" /> is being defined.</returns>
1289     </member>
1290     <member name="P:System.Reflection.Emit.MethodBuilder.Name">
1291       <summary>Retrieves the name of this method.</summary>
1292       <returns>Read-only. Retrieves a string containing the simple name of this method.</returns>
1293     </member>
1294     <member name="P:System.Reflection.Emit.MethodBuilder.ReflectedType">
1295       <summary>Retrieves the class that was used in reflection to obtain this object.</summary>
1296       <returns>Read-only. The type used to obtain this method.</returns>
1297     </member>
1298     <member name="P:System.Reflection.Emit.MethodBuilder.ReturnParameter">
1299       <summary>Gets a <see cref="T:System.Reflection.ParameterInfo" /> object that contains information about the return type of the method, such as whether the return type has custom modifiers.</summary>
1300       <returns>A <see cref="T:System.Reflection.ParameterInfo" /> object that contains information about the return type.</returns>
1301       <exception cref="T:System.InvalidOperationException">The declaring type has not been created.</exception>
1302     </member>
1303     <member name="P:System.Reflection.Emit.MethodBuilder.ReturnType">
1304       <summary>Gets the return type of the method represented by this <see cref="T:System.Reflection.Emit.MethodBuilder" />.</summary>
1305       <returns>The return type of the method.</returns>
1306     </member>
1307     <member name="P:System.Reflection.Emit.MethodBuilder.ReturnTypeCustomAttributes">
1308       <summary>Returns the custom attributes of the method's return type.</summary>
1309       <returns>Read-only. The custom attributes of the method's return type.</returns>
1310     </member>
1311     <member name="M:System.Reflection.Emit.MethodBuilder.SetCustomAttribute(System.Reflection.ConstructorInfo,System.Byte[])">
1312       <summary>Sets a custom attribute using a specified custom attribute blob.</summary>
1313       <param name="con">The constructor for the custom attribute.</param>
1314       <param name="binaryAttribute">A byte blob representing the attributes.</param>
1315       <exception cref="T:System.ArgumentNullException">
1316         <paramref name="con" /> or <paramref name="binaryAttribute" /> is <see langword="null" />.</exception>
1317       <exception cref="T:System.InvalidOperationException">For the current method, the <see cref="P:System.Reflection.Emit.MethodBuilder.IsGenericMethod" /> property is <see langword="true" />, but the <see cref="P:System.Reflection.Emit.MethodBuilder.IsGenericMethodDefinition" /> property is <see langword="false" />.</exception>
1318     </member>
1319     <member name="M:System.Reflection.Emit.MethodBuilder.SetCustomAttribute(System.Reflection.Emit.CustomAttributeBuilder)">
1320       <summary>Sets a custom attribute using a custom attribute builder.</summary>
1321       <param name="customBuilder">An instance of a helper class to describe the custom attribute.</param>
1322       <exception cref="T:System.ArgumentNullException">
1323         <paramref name="customBuilder" /> is <see langword="null" />.</exception>
1324       <exception cref="T:System.InvalidOperationException">For the current method, the <see cref="P:System.Reflection.Emit.MethodBuilder.IsGenericMethod" /> property is <see langword="true" />, but the <see cref="P:System.Reflection.Emit.MethodBuilder.IsGenericMethodDefinition" /> property is <see langword="false" />.</exception>
1325     </member>
1326     <member name="M:System.Reflection.Emit.MethodBuilder.SetImplementationFlags(System.Reflection.MethodImplAttributes)">
1327       <summary>Sets the implementation flags for this method.</summary>
1328       <param name="attributes">The implementation flags to set.</param>
1329       <exception cref="T:System.InvalidOperationException">The containing type was previously created using <see cref="M:System.Reflection.Emit.TypeBuilder.CreateType" />.
1330 -or-
1331 For the current method, the <see cref="P:System.Reflection.Emit.MethodBuilder.IsGenericMethod" /> property is <see langword="true" />, but the <see cref="P:System.Reflection.Emit.MethodBuilder.IsGenericMethodDefinition" /> property is <see langword="false" />.</exception>
1332     </member>
1333     <member name="M:System.Reflection.Emit.MethodBuilder.SetParameters(System.Type[])">
1334       <summary>Sets the number and types of parameters for a method.</summary>
1335       <param name="parameterTypes">An array of <see cref="T:System.Type" /> objects representing the parameter types.</param>
1336       <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" /> property is <see langword="true" />, but the <see cref="P:System.Reflection.Emit.MethodBuilder.IsGenericMethodDefinition" /> property is <see langword="false" />.</exception>
1337     </member>
1338     <member name="M:System.Reflection.Emit.MethodBuilder.SetReturnType(System.Type)">
1339       <summary>Sets the return type of the method.</summary>
1340       <param name="returnType">A <see cref="T:System.Type" /> object that represents the return type of the method.</param>
1341       <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" /> property is <see langword="true" />, but the <see cref="P:System.Reflection.Emit.MethodBuilder.IsGenericMethodDefinition" /> property is <see langword="false" />.</exception>
1342     </member>
1343     <member name="M:System.Reflection.Emit.MethodBuilder.SetSignature(System.Type,System.Type[],System.Type[],System.Type[],System.Type[][],System.Type[][])">
1344       <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>
1345       <param name="returnType">The return type of the method.</param>
1346       <param name="returnTypeRequiredCustomModifiers">An array of types representing the required custom modifiers, such as <see cref="T:System.Runtime.CompilerServices.IsConst" />, for the return type of the method. If the return type has no required custom modifiers, specify <see langword="null" />.</param>
1347       <param name="returnTypeOptionalCustomModifiers">An array of types representing the optional custom modifiers, such as <see cref="T:System.Runtime.CompilerServices.IsConst" />, for the return type of the method. If the return type has no optional custom modifiers, specify <see langword="null" />.</param>
1348       <param name="parameterTypes">The types of the parameters of the method.</param>
1349       <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" />. If a particular parameter has no required custom modifiers, specify <see langword="null" /> instead of an array of types. If none of the parameters have required custom modifiers, specify <see langword="null" /> instead of an array of arrays.</param>
1350       <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" />. If a particular parameter has no optional custom modifiers, specify <see langword="null" /> instead of an array of types. If none of the parameters have optional custom modifiers, specify <see langword="null" /> instead of an array of arrays.</param>
1351       <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" /> property is <see langword="true" />, but the <see cref="P:System.Reflection.Emit.MethodBuilder.IsGenericMethodDefinition" /> property is <see langword="false" />.</exception>
1352     </member>
1353     <member name="M:System.Reflection.Emit.MethodBuilder.ToString">
1354       <summary>Returns this <see langword="MethodBuilder" /> instance as a string.</summary>
1355       <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>
1356     </member>
1357     <member name="T:System.Reflection.Emit.ModuleBuilder">
1358       <summary>Defines and represents a module in a dynamic assembly.</summary>
1359     </member>
1360     <member name="P:System.Reflection.Emit.ModuleBuilder.Assembly">
1361       <summary>Gets the dynamic assembly that defined this instance of <see cref="T:System.Reflection.Emit.ModuleBuilder" />.</summary>
1362       <returns>The dynamic assembly that defined the current dynamic module.</returns>
1363     </member>
1364     <member name="M:System.Reflection.Emit.ModuleBuilder.CreateGlobalFunctions">
1365       <summary>Completes the global function definitions and global data definitions for this dynamic module.</summary>
1366       <exception cref="T:System.InvalidOperationException">This method was called previously.</exception>
1367     </member>
1368     <member name="M:System.Reflection.Emit.ModuleBuilder.DefineEnum(System.String,System.Reflection.TypeAttributes,System.Type)">
1369       <summary>Defines an enumeration type that is a value type with a single non-static field called <paramref name="value__" /> of the specified type.</summary>
1370       <param name="name">The full path of the enumeration type. <paramref name="name" /> cannot contain embedded nulls.</param>
1371       <param name="visibility">The type attributes for the enumeration. The attributes are any bits defined by <see cref="F:System.Reflection.TypeAttributes.VisibilityMask" />.</param>
1372       <param name="underlyingType">The underlying type for the enumeration. This must be a built-in integer type.</param>
1373       <returns>The defined enumeration.</returns>
1374       <exception cref="T:System.ArgumentException">Attributes other than visibility attributes are provided.
1375 -or-
1376 An enumeration with the given name exists in the parent assembly of this module.
1377 -or-
1378 The visibility attributes do not match the scope of the enumeration. For example, <see cref="F:System.Reflection.TypeAttributes.NestedPublic" /> is specified for <paramref name="visibility" />, but the enumeration is not a nested type.</exception>
1379       <exception cref="T:System.ArgumentNullException">
1380         <paramref name="name" /> is <see langword="null" />.</exception>
1381     </member>
1382     <member name="M:System.Reflection.Emit.ModuleBuilder.DefineGlobalMethod(System.String,System.Reflection.MethodAttributes,System.Reflection.CallingConventions,System.Type,System.Type[])">
1383       <summary>Defines a global method with the specified name, attributes, calling convention, return type, and parameter types.</summary>
1384       <param name="name">The name of the method. <paramref name="name" /> cannot contain embedded nulls.</param>
1385       <param name="attributes">The attributes of the method. <paramref name="attributes" /> must include <see cref="F:System.Reflection.MethodAttributes.Static" />.</param>
1386       <param name="callingConvention">The calling convention for the method.</param>
1387       <param name="returnType">The return type of the method.</param>
1388       <param name="parameterTypes">The types of the method's parameters.</param>
1389       <returns>The defined global method.</returns>
1390       <exception cref="T:System.ArgumentException">The method is not static. That is, <paramref name="attributes" /> does not include <see cref="F:System.Reflection.MethodAttributes.Static" />.
1391 -or-
1392 An element in the <see cref="T:System.Type" /> array is <see langword="null" />.</exception>
1393       <exception cref="T:System.ArgumentNullException">
1394         <paramref name="name" /> is <see langword="null" />.</exception>
1395       <exception cref="T:System.InvalidOperationException">
1396         <see cref="M:System.Reflection.Emit.ModuleBuilder.CreateGlobalFunctions" /> has been previously called.</exception>
1397     </member>
1398     <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[][])">
1399       <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>
1400       <param name="name">The name of the method. <paramref name="name" /> cannot contain embedded null characters.</param>
1401       <param name="attributes">The attributes of the method. <paramref name="attributes" /> must include <see cref="F:System.Reflection.MethodAttributes.Static" />.</param>
1402       <param name="callingConvention">The calling convention for the method.</param>
1403       <param name="returnType">The return type of the method.</param>
1404       <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" /> or <see cref="T:System.Runtime.CompilerServices.IsBoxed" />. If the return type has no required custom modifiers, specify <see langword="null" />.</param>
1405       <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" /> or <see cref="T:System.Runtime.CompilerServices.IsBoxed" />. If the return type has no optional custom modifiers, specify <see langword="null" />.</param>
1406       <param name="parameterTypes">The types of the method's parameters.</param>
1407       <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 <see langword="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 <see langword="null" /> instead of an array of arrays.</param>
1408       <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 <see langword="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 <see langword="null" /> instead of an array of arrays.</param>
1409       <returns>The defined global method.</returns>
1410       <exception cref="T:System.ArgumentException">The method is not static. That is, <paramref name="attributes" /> does not include <see cref="F:System.Reflection.MethodAttributes.Static" />.
1411 -or-
1412 An element in the <see cref="T:System.Type" /> array is <see langword="null" />.</exception>
1413       <exception cref="T:System.ArgumentNullException">
1414         <paramref name="name" /> is <see langword="null" />.</exception>
1415       <exception cref="T:System.InvalidOperationException">The <see cref="M:System.Reflection.Emit.ModuleBuilder.CreateGlobalFunctions" /> method has been previously called.</exception>
1416     </member>
1417     <member name="M:System.Reflection.Emit.ModuleBuilder.DefineGlobalMethod(System.String,System.Reflection.MethodAttributes,System.Type,System.Type[])">
1418       <summary>Defines a global method with the specified name, attributes, return type, and parameter types.</summary>
1419       <param name="name">The name of the method. <paramref name="name" /> cannot contain embedded nulls.</param>
1420       <param name="attributes">The attributes of the method. <paramref name="attributes" /> must include <see cref="F:System.Reflection.MethodAttributes.Static" />.</param>
1421       <param name="returnType">The return type of the method.</param>
1422       <param name="parameterTypes">The types of the method's parameters.</param>
1423       <returns>The defined global method.</returns>
1424       <exception cref="T:System.ArgumentException">The method is not static. That is, <paramref name="attributes" /> does not include <see cref="F:System.Reflection.MethodAttributes.Static" />.
1425 -or-
1426 The length of <paramref name="name" /> is zero
1427 -or-
1428 An element in the <see cref="T:System.Type" /> array is <see langword="null" />.</exception>
1429       <exception cref="T:System.ArgumentNullException">
1430         <paramref name="name" /> is <see langword="null" />.</exception>
1431       <exception cref="T:System.InvalidOperationException">
1432         <see cref="M:System.Reflection.Emit.ModuleBuilder.CreateGlobalFunctions" /> has been previously called.</exception>
1433     </member>
1434     <member name="M:System.Reflection.Emit.ModuleBuilder.DefineInitializedData(System.String,System.Byte[],System.Reflection.FieldAttributes)">
1435       <summary>Defines an initialized data field in the .sdata section of the portable executable (PE) file.</summary>
1436       <param name="name">The name used to refer to the data. <paramref name="name" /> cannot contain embedded nulls.</param>
1437       <param name="data">The binary large object (BLOB) of data.</param>
1438       <param name="attributes">The attributes for the field. The default is <see langword="Static" />.</param>
1439       <returns>A field to reference the data.</returns>
1440       <exception cref="T:System.ArgumentException">The length of <paramref name="name" /> is zero.
1441 -or-
1442 The size of <paramref name="data" /> is less than or equal to zero or greater than or equal to 0x3f0000.</exception>
1443       <exception cref="T:System.ArgumentNullException">
1444         <paramref name="name" /> or <paramref name="data" /> is <see langword="null" />.</exception>
1445       <exception cref="T:System.InvalidOperationException">
1446         <see cref="M:System.Reflection.Emit.ModuleBuilder.CreateGlobalFunctions" /> has been previously called.</exception>
1447     </member>
1448     <member name="M:System.Reflection.Emit.ModuleBuilder.DefinePInvokeMethod(System.String,System.String,System.Reflection.MethodAttributes,System.Reflection.CallingConventions,System.Type,System.Type[],System.Runtime.InteropServices.CallingConvention,System.Runtime.InteropServices.CharSet)">
1449       <summary>Defines a <see langword="PInvoke" /> method with the specified name, the name of the DLL in which the method is defined, the attributes of the method, the calling convention of the method, the return type of the method, the types of the parameters of the method, and the <see langword="PInvoke" /> flags.</summary>
1450       <param name="name">The name of the <see langword="PInvoke" /> method. <paramref name="name" /> cannot contain embedded nulls.</param>
1451       <param name="dllName">The name of the DLL in which the <see langword="PInvoke" /> method is defined.</param>
1452       <param name="attributes">The attributes of the method.</param>
1453       <param name="callingConvention">The method's calling convention.</param>
1454       <param name="returnType">The method's return type.</param>
1455       <param name="parameterTypes">The types of the method's parameters.</param>
1456       <param name="nativeCallConv">The native calling convention.</param>
1457       <param name="nativeCharSet">The method's native character set.</param>
1458       <returns>The defined <see langword="PInvoke" /> method.</returns>
1459       <exception cref="T:System.ArgumentException">The method is not static or if the containing type is an interface.
1460 -or-
1461 The method is abstract.
1462 -or-
1463 The method was previously defined.</exception>
1464       <exception cref="T:System.ArgumentNullException">
1465         <paramref name="name" /> or <paramref name="dllName" /> is <see langword="null" />.</exception>
1466       <exception cref="T:System.InvalidOperationException">The containing type has been previously created using <see cref="M:System.Reflection.Emit.TypeBuilder.CreateType" /></exception>
1467     </member>
1468     <member name="M:System.Reflection.Emit.ModuleBuilder.DefinePInvokeMethod(System.String,System.String,System.String,System.Reflection.MethodAttributes,System.Reflection.CallingConventions,System.Type,System.Type[],System.Runtime.InteropServices.CallingConvention,System.Runtime.InteropServices.CharSet)">
1469       <summary>Defines a <see langword="PInvoke" /> method with the specified name, the name of the DLL in which the method is defined, the attributes of the method, the calling convention of the method, the return type of the method, the types of the parameters of the method, and the <see langword="PInvoke" /> flags.</summary>
1470       <param name="name">The name of the <see langword="PInvoke" /> method. <paramref name="name" /> cannot contain embedded nulls.</param>
1471       <param name="dllName">The name of the DLL in which the <see langword="PInvoke" /> method is defined.</param>
1472       <param name="entryName">The name of the entry point in the DLL.</param>
1473       <param name="attributes">The attributes of the method.</param>
1474       <param name="callingConvention">The method's calling convention.</param>
1475       <param name="returnType">The method's return type.</param>
1476       <param name="parameterTypes">The types of the method's parameters.</param>
1477       <param name="nativeCallConv">The native calling convention.</param>
1478       <param name="nativeCharSet">The method's native character set.</param>
1479       <returns>The defined <see langword="PInvoke" /> method.</returns>
1480       <exception cref="T:System.ArgumentException">The method is not static or if the containing type is an interface or if the method is abstract of if the method was previously defined.</exception>
1481       <exception cref="T:System.ArgumentNullException">
1482         <paramref name="name" /> or <paramref name="dllName" /> is <see langword="null" />.</exception>
1483       <exception cref="T:System.InvalidOperationException">The containing type has been previously created using <see cref="M:System.Reflection.Emit.TypeBuilder.CreateType" /></exception>
1484     </member>
1485     <member name="M:System.Reflection.Emit.ModuleBuilder.DefineType(System.String)">
1486       <summary>Constructs a <see langword="TypeBuilder" /> for a private type with the specified name in this module.</summary>
1487       <param name="name">The full path of the type, including the namespace. <paramref name="name" /> cannot contain embedded nulls.</param>
1488       <returns>A private type with the specified name.</returns>
1489       <exception cref="T:System.ArgumentException">A type with the given name exists in the parent assembly of this module.
1490 -or-
1491 Nested type attributes are set on a type that is not nested.</exception>
1492       <exception cref="T:System.ArgumentNullException">
1493         <paramref name="name" /> is <see langword="null" />.</exception>
1494     </member>
1495     <member name="M:System.Reflection.Emit.ModuleBuilder.DefineType(System.String,System.Reflection.TypeAttributes)">
1496       <summary>Constructs a <see langword="TypeBuilder" /> given the type name and the type attributes.</summary>
1497       <param name="name">The full path of the type. <paramref name="name" /> cannot contain embedded nulls.</param>
1498       <param name="attr">The attributes of the defined type.</param>
1499       <returns>A <see langword="TypeBuilder" /> created with all of the requested attributes.</returns>
1500       <exception cref="T:System.ArgumentException">A type with the given name exists in the parent assembly of this module.
1501 -or-
1502 Nested type attributes are set on a type that is not nested.</exception>
1503       <exception cref="T:System.ArgumentNullException">
1504         <paramref name="name" /> is <see langword="null" />.</exception>
1505     </member>
1506     <member name="M:System.Reflection.Emit.ModuleBuilder.DefineType(System.String,System.Reflection.TypeAttributes,System.Type)">
1507       <summary>Constructs a <see langword="TypeBuilder" /> given type name, its attributes, and the type that the defined type extends.</summary>
1508       <param name="name">The full path of the type. <paramref name="name" /> cannot contain embedded nulls.</param>
1509       <param name="attr">The attribute to be associated with the type.</param>
1510       <param name="parent">The type that the defined type extends.</param>
1511       <returns>A <see langword="TypeBuilder" /> created with all of the requested attributes.</returns>
1512       <exception cref="T:System.ArgumentException">A type with the given name exists in the parent assembly of this module.
1513 -or-
1514 Nested type attributes are set on a type that is not nested.</exception>
1515       <exception cref="T:System.ArgumentNullException">
1516         <paramref name="name" /> is <see langword="null" />.</exception>
1517     </member>
1518     <member name="M:System.Reflection.Emit.ModuleBuilder.DefineType(System.String,System.Reflection.TypeAttributes,System.Type,System.Int32)">
1519       <summary>Constructs a <see langword="TypeBuilder" /> given the type name, the attributes, the type that the defined type extends, and the total size of the type.</summary>
1520       <param name="name">The full path of the type. <paramref name="name" /> cannot contain embedded nulls.</param>
1521       <param name="attr">The attributes of the defined type.</param>
1522       <param name="parent">The type that the defined type extends.</param>
1523       <param name="typesize">The total size of the type.</param>
1524       <returns>A <see langword="TypeBuilder" /> object.</returns>
1525       <exception cref="T:System.ArgumentException">A type with the given name exists in the parent assembly of this module.
1526 -or-
1527 Nested type attributes are set on a type that is not nested.</exception>
1528       <exception cref="T:System.ArgumentNullException">
1529         <paramref name="name" /> is <see langword="null" />.</exception>
1530     </member>
1531     <member name="M:System.Reflection.Emit.ModuleBuilder.DefineType(System.String,System.Reflection.TypeAttributes,System.Type,System.Reflection.Emit.PackingSize)">
1532       <summary>Constructs a <see langword="TypeBuilder" /> given the type name, the attributes, the type that the defined type extends, and the packing size of the type.</summary>
1533       <param name="name">The full path of the type. <paramref name="name" /> cannot contain embedded nulls.</param>
1534       <param name="attr">The attributes of the defined type.</param>
1535       <param name="parent">The type that the defined type extends.</param>
1536       <param name="packsize">The packing size of the type.</param>
1537       <returns>A <see langword="TypeBuilder" /> object.</returns>
1538       <exception cref="T:System.ArgumentException">A type with the given name exists in the parent assembly of this module.
1539 -or-
1540 Nested type attributes are set on a type that is not nested.</exception>
1541       <exception cref="T:System.ArgumentNullException">
1542         <paramref name="name" /> is <see langword="null" />.</exception>
1543     </member>
1544     <member name="M:System.Reflection.Emit.ModuleBuilder.DefineType(System.String,System.Reflection.TypeAttributes,System.Type,System.Reflection.Emit.PackingSize,System.Int32)">
1545       <summary>Constructs a <see langword="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>
1546       <param name="name">The full path of the type. <paramref name="name" /> cannot contain embedded nulls.</param>
1547       <param name="attr">The attributes of the defined type.</param>
1548       <param name="parent">The type that the defined type extends.</param>
1549       <param name="packingSize">The packing size of the type.</param>
1550       <param name="typesize">The total size of the type.</param>
1551       <returns>A <see langword="TypeBuilder" /> created with all of the requested attributes.</returns>
1552       <exception cref="T:System.ArgumentException">A type with the given name exists in the parent assembly of this module.
1553 -or-
1554 Nested type attributes are set on a type that is not nested.</exception>
1555       <exception cref="T:System.ArgumentNullException">
1556         <paramref name="name" /> is <see langword="null" />.</exception>
1557     </member>
1558     <member name="M:System.Reflection.Emit.ModuleBuilder.DefineType(System.String,System.Reflection.TypeAttributes,System.Type,System.Type[])">
1559       <summary>Constructs a <see langword="TypeBuilder" /> given the type name, attributes, the type that the defined type extends, and the interfaces that the defined type implements.</summary>
1560       <param name="name">The full path of the type. <paramref name="name" /> cannot contain embedded nulls.</param>
1561       <param name="attr">The attributes to be associated with the type.</param>
1562       <param name="parent">The type that the defined type extends.</param>
1563       <param name="interfaces">The list of interfaces that the type implements.</param>
1564       <returns>A <see langword="TypeBuilder" /> created with all of the requested attributes.</returns>
1565       <exception cref="T:System.ArgumentException">A type with the given name exists in the parent assembly of this module.
1566 -or-
1567 Nested type attributes are set on a type that is not nested.</exception>
1568       <exception cref="T:System.ArgumentNullException">
1569         <paramref name="name" /> is <see langword="null" />.</exception>
1570     </member>
1571     <member name="M:System.Reflection.Emit.ModuleBuilder.DefineUninitializedData(System.String,System.Int32,System.Reflection.FieldAttributes)">
1572       <summary>Defines an uninitialized data field in the .sdata section of the portable executable (PE) file.</summary>
1573       <param name="name">The name used to refer to the data. <paramref name="name" /> cannot contain embedded nulls.</param>
1574       <param name="size">The size of the data field.</param>
1575       <param name="attributes">The attributes for the field.</param>
1576       <returns>A field to reference the data.</returns>
1577       <exception cref="T:System.ArgumentException">The length of <paramref name="name" /> is zero.
1578 -or-
1579 <paramref name="size" /> is less than or equal to zero, or greater than or equal to 0x003f0000.</exception>
1580       <exception cref="T:System.ArgumentNullException">
1581         <paramref name="name" /> is <see langword="null" />.</exception>
1582       <exception cref="T:System.InvalidOperationException">
1583         <see cref="M:System.Reflection.Emit.ModuleBuilder.CreateGlobalFunctions" /> has been previously called.</exception>
1584     </member>
1585     <member name="M:System.Reflection.Emit.ModuleBuilder.Equals(System.Object)">
1586       <summary>Returns a value that indicates whether this instance is equal to the specified object.</summary>
1587       <param name="obj">An object to compare with this instance, or <see langword="null" />.</param>
1588       <returns>
1589         <see langword="true" /> if <paramref name="obj" /> equals the type and value of this instance; otherwise, <see langword="false" />.</returns>
1590     </member>
1591     <member name="P:System.Reflection.Emit.ModuleBuilder.FullyQualifiedName">
1592       <summary>Gets a <see langword="String" /> representing the fully qualified name and path to this module.</summary>
1593       <returns>The fully qualified module name.</returns>
1594     </member>
1595     <member name="M:System.Reflection.Emit.ModuleBuilder.GetArrayMethod(System.Type,System.String,System.Reflection.CallingConventions,System.Type,System.Type[])">
1596       <summary>Returns the named method on an array class.</summary>
1597       <param name="arrayClass">An array class.</param>
1598       <param name="methodName">The name of a method on the array class.</param>
1599       <param name="callingConvention">The method's calling convention.</param>
1600       <param name="returnType">The return type of the method.</param>
1601       <param name="parameterTypes">The types of the method's parameters.</param>
1602       <returns>The named method on an array class.</returns>
1603       <exception cref="T:System.ArgumentException">
1604         <paramref name="arrayClass" /> is not an array.</exception>
1605       <exception cref="T:System.ArgumentNullException">
1606         <paramref name="arrayClass" /> or <paramref name="methodName" /> is <see langword="null" />.</exception>
1607     </member>
1608     <member name="M:System.Reflection.Emit.ModuleBuilder.GetCustomAttributes(System.Boolean)">
1609       <summary>Returns all the custom attributes that have been applied to the current <see cref="T:System.Reflection.Emit.ModuleBuilder" />.</summary>
1610       <param name="inherit">This argument is ignored for objects of this type.</param>
1611       <returns>An array that contains the custom attributes; the array is empty if there are no attributes.</returns>
1612     </member>
1613     <member name="M:System.Reflection.Emit.ModuleBuilder.GetCustomAttributes(System.Type,System.Boolean)">
1614       <summary>Returns all the custom attributes that have been applied to the current <see cref="T:System.Reflection.Emit.ModuleBuilder" />, and that derive from a specified attribute type.</summary>
1615       <param name="attributeType">The base type from which attributes derive.</param>
1616       <param name="inherit">This argument is ignored for objects of this type.</param>
1617       <returns>An array that contains the custom attributes that are derived, at any level, from <paramref name="attributeType" />; the array is empty if there are no such attributes.</returns>
1618       <exception cref="T:System.ArgumentNullException">
1619         <paramref name="attributeType" /> is <see langword="null" />.</exception>
1620       <exception cref="T:System.ArgumentException">
1621         <paramref name="attributeType" /> is not a <see cref="T:System.Type" /> object supplied by the runtime. For example, <paramref name="attributeType" /> is a <see cref="T:System.Reflection.Emit.TypeBuilder" /> object.</exception>
1622     </member>
1623     <member name="M:System.Reflection.Emit.ModuleBuilder.GetCustomAttributesData">
1624       <summary>Returns information about the attributes that have been applied to the current <see cref="T:System.Reflection.Emit.ModuleBuilder" />, expressed as <see cref="T:System.Reflection.CustomAttributeData" /> objects.</summary>
1625       <returns>A generic list of <see cref="T:System.Reflection.CustomAttributeData" /> objects representing data about the attributes that have been applied to the current module.</returns>
1626     </member>
1627     <member name="M:System.Reflection.Emit.ModuleBuilder.GetField(System.String,System.Reflection.BindingFlags)">
1628       <summary>Returns a module-level field, defined in the .sdata region of the portable executable (PE) file, that has the specified name and binding attributes.</summary>
1629       <param name="name">The field name.</param>
1630       <param name="bindingAttr">A combination of the <see langword="BindingFlags" /> bit flags used to control the search.</param>
1631       <returns>A field that has the specified name and binding attributes, or <see langword="null" /> if the field does not exist.</returns>
1632       <exception cref="T:System.ArgumentNullException">The <paramref name="name" /> parameter is <see langword="null" />.</exception>
1633     </member>
1634     <member name="M:System.Reflection.Emit.ModuleBuilder.GetFields(System.Reflection.BindingFlags)">
1635       <summary>Returns all fields defined in the .sdata region of the portable executable (PE) file that match the specified binding flags.</summary>
1636       <param name="bindingFlags">A combination of the <see langword="BindingFlags" /> bit flags used to control the search.</param>
1637       <returns>An array of fields that match the specified flags; the array is empty if no such fields exist.</returns>
1638       <exception cref="T:System.ArgumentNullException">The <paramref name="name" /> parameter is <see langword="null" />.</exception>
1639     </member>
1640     <member name="M:System.Reflection.Emit.ModuleBuilder.GetHashCode">
1641       <summary>Returns the hash code for this instance.</summary>
1642       <returns>A 32-bit signed integer hash code.</returns>
1643     </member>
1644     <member name="M:System.Reflection.Emit.ModuleBuilder.GetMethods(System.Reflection.BindingFlags)">
1645       <summary>Returns all the methods that have been defined at the module level for the current <see cref="T:System.Reflection.Emit.ModuleBuilder" />, and that match the specified binding flags.</summary>
1646       <param name="bindingFlags">A combination of <see langword="BindingFlags" /> bit flags used to control the search.</param>
1647       <returns>An array that contains all the module-level methods that match <paramref name="bindingFlags" />.</returns>
1648     </member>
1649     <member name="M:System.Reflection.Emit.ModuleBuilder.GetPEKind(System.Reflection.PortableExecutableKinds@,System.Reflection.ImageFileMachine@)">
1650       <summary>Gets a pair of values indicating the nature of the code in a module and the platform targeted by the module.</summary>
1651       <param name="peKind">When this method returns, a combination of the <see cref="T:System.Reflection.PortableExecutableKinds" /> values indicating the nature of the code in the module.</param>
1652       <param name="machine">When this method returns, one of the <see cref="T:System.Reflection.ImageFileMachine" /> values indicating the platform targeted by the module.</param>
1653     </member>
1654     <member name="M:System.Reflection.Emit.ModuleBuilder.GetType(System.String)">
1655       <summary>Gets the named type defined in the module.</summary>
1656       <param name="className">The name of the <see cref="T:System.Type" /> to get.</param>
1657       <returns>The requested type, if the type is defined in this module; otherwise, <see langword="null" />.</returns>
1658       <exception cref="T:System.ArgumentException">Length of <paramref name="className" /> is zero or is greater than 1023.</exception>
1659       <exception cref="T:System.ArgumentNullException">
1660         <paramref name="className" /> is <see langword="null" />.</exception>
1661       <exception cref="T:System.Security.SecurityException">The requested <see cref="T:System.Type" /> is non-public and the caller does not have <see cref="T:System.Security.Permissions.ReflectionPermission" /> to reflect non-public objects outside the current assembly.</exception>
1662       <exception cref="T:System.Reflection.TargetInvocationException">A class initializer is invoked and throws an exception.</exception>
1663       <exception cref="T:System.TypeLoadException">An error is encountered while loading the <see cref="T:System.Type" />.</exception>
1664     </member>
1665     <member name="M:System.Reflection.Emit.ModuleBuilder.GetType(System.String,System.Boolean)">
1666       <summary>Gets the named type defined in the module, optionally ignoring the case of the type name.</summary>
1667       <param name="className">The name of the <see cref="T:System.Type" /> to get.</param>
1668       <param name="ignoreCase">If <see langword="true" />, the search is case-insensitive. If <see langword="false" />, the search is case-sensitive.</param>
1669       <returns>The requested type, if the type is defined in this module; otherwise, <see langword="null" />.</returns>
1670       <exception cref="T:System.ArgumentException">Length of <paramref name="className" /> is zero or is greater than 1023.</exception>
1671       <exception cref="T:System.ArgumentNullException">
1672         <paramref name="className" /> is <see langword="null" />.</exception>
1673       <exception cref="T:System.Security.SecurityException">The requested <see cref="T:System.Type" /> is non-public and the caller does not have <see cref="T:System.Security.Permissions.ReflectionPermission" /> to reflect non-public objects outside the current assembly.</exception>
1674       <exception cref="T:System.Reflection.TargetInvocationException">A class initializer is invoked and throws an exception.</exception>
1675     </member>
1676     <member name="M:System.Reflection.Emit.ModuleBuilder.GetType(System.String,System.Boolean,System.Boolean)">
1677       <summary>Gets the named type defined in the module, optionally ignoring the case of the type name. Optionally throws an exception if the type is not found.</summary>
1678       <param name="className">The name of the <see cref="T:System.Type" /> to get.</param>
1679       <param name="throwOnError">
1680         <see langword="true" /> to throw an exception if the type cannot be found; <see langword="false" /> to return <see langword="null" />.</param>
1681       <param name="ignoreCase">If <see langword="true" />, the search is case-insensitive. If <see langword="false" />, the search is case-sensitive.</param>
1682       <returns>The specified type, if the type is declared in this module; otherwise, <see langword="null" />.</returns>
1683       <exception cref="T:System.ArgumentException">Length of <paramref name="className" /> is zero or is greater than 1023.</exception>
1684       <exception cref="T:System.ArgumentNullException">
1685         <paramref name="className" /> is <see langword="null" />.</exception>
1686       <exception cref="T:System.Security.SecurityException">The requested <see cref="T:System.Type" /> is non-public and the caller does not have <see cref="T:System.Security.Permissions.ReflectionPermission" /> to reflect non-public objects outside the current assembly.</exception>
1687       <exception cref="T:System.Reflection.TargetInvocationException">A class initializer is invoked and throws an exception.</exception>
1688       <exception cref="T:System.TypeLoadException">
1689         <paramref name="throwOnError" /> is <see langword="true" /> and the specified type is not found.</exception>
1690     </member>
1691     <member name="M:System.Reflection.Emit.ModuleBuilder.GetTypes">
1692       <summary>Returns all the classes defined within this module.</summary>
1693       <returns>An array that contains the types defined within the module that is reflected by this instance.</returns>
1694       <exception cref="T:System.Reflection.ReflectionTypeLoadException">One or more classes in a module could not be loaded.</exception>
1695       <exception cref="T:System.Security.SecurityException">The caller does not have the required permission.</exception>
1696     </member>
1697     <member name="M:System.Reflection.Emit.ModuleBuilder.IsDefined(System.Type,System.Boolean)">
1698       <summary>Returns a value that indicates whether the specified attribute type has been applied to this module.</summary>
1699       <param name="attributeType">The type of custom attribute to test for.</param>
1700       <param name="inherit">This argument is ignored for objects of this type.</param>
1701       <returns>
1702         <see langword="true" /> if one or more instances of <paramref name="attributeType" /> have been applied to this module; otherwise, <see langword="false" />.</returns>
1703       <exception cref="T:System.ArgumentNullException">
1704         <paramref name="attributeType" /> is <see langword="null" />.</exception>
1705       <exception cref="T:System.ArgumentException">
1706         <paramref name="attributeType" /> is not a <see cref="T:System.Type" /> object supplied by the runtime. For example, <paramref name="attributeType" /> is a <see cref="T:System.Reflection.Emit.TypeBuilder" /> object.</exception>
1707     </member>
1708     <member name="M:System.Reflection.Emit.ModuleBuilder.IsResource">
1709       <summary>Gets a value indicating whether the object is a resource.</summary>
1710       <returns>
1711         <see langword="true" /> if the object is a resource; otherwise, <see langword="false" />.</returns>
1712     </member>
1713     <member name="P:System.Reflection.Emit.ModuleBuilder.MDStreamVersion">
1714       <summary>Gets the metadata stream version.</summary>
1715       <returns>A 32-bit integer representing the metadata stream version. The high-order two bytes represent the major version number, and the low-order two bytes represent the minor version number.</returns>
1716     </member>
1717     <member name="P:System.Reflection.Emit.ModuleBuilder.MetadataToken">
1718       <summary>Gets a token that identifies the current dynamic module in metadata.</summary>
1719       <returns>An integer token that identifies the current module in metadata.</returns>
1720     </member>
1721     <member name="P:System.Reflection.Emit.ModuleBuilder.ModuleVersionId">
1722       <summary>Gets a universally unique identifier (UUID) that can be used to distinguish between two versions of a module.</summary>
1723       <returns>A <see cref="T:System.Guid" /> that can be used to distinguish between two versions of a module.</returns>
1724     </member>
1725     <member name="P:System.Reflection.Emit.ModuleBuilder.Name">
1726       <summary>A string that indicates that this is an in-memory module.</summary>
1727       <returns>Text that indicates that this is an in-memory module.</returns>
1728     </member>
1729     <member name="M:System.Reflection.Emit.ModuleBuilder.ResolveField(System.Int32,System.Type[],System.Type[])">
1730       <summary>Returns the field identified by the specified metadata token, in the context defined by the specified generic type parameters.</summary>
1731       <param name="metadataToken">A metadata token that identifies a field in the module.</param>
1732       <param name="genericTypeArguments">An array of <see cref="T:System.Type" /> objects representing the generic type arguments of the type where the token is in scope, or <see langword="null" /> if that type is not generic.</param>
1733       <param name="genericMethodArguments">An array of <see cref="T:System.Type" /> objects representing the generic type arguments of the method where the token is in scope, or <see langword="null" /> if that method is not generic.</param>
1734       <returns>A <see cref="T:System.Reflection.FieldInfo" /> object representing the field that is identified by the specified metadata token.</returns>
1735       <exception cref="T:System.ArgumentException">
1736         <paramref name="metadataToken" /> is not a token for a field in the scope of the current module.
1737 -or-
1738 <paramref name="metadataToken" /> identifies a field whose parent <see langword="TypeSpec" /> has a signature containing element type <see langword="var" /> (a type parameter of a generic type) or <see langword="mvar" /> (a type parameter of a generic method), and the necessary generic type arguments were not supplied for either or both of <paramref name="genericTypeArguments" /> and <paramref name="genericMethodArguments" />.</exception>
1739       <exception cref="T:System.ArgumentOutOfRangeException">
1740         <paramref name="metadataToken" /> is not a valid token in the scope of the current module.</exception>
1741     </member>
1742     <member name="M:System.Reflection.Emit.ModuleBuilder.ResolveMember(System.Int32,System.Type[],System.Type[])">
1743       <summary>Returns the type or member identified by the specified metadata token, in the context defined by the specified generic type parameters.</summary>
1744       <param name="metadataToken">A metadata token that identifies a type or member in the module.</param>
1745       <param name="genericTypeArguments">An array of <see cref="T:System.Type" /> objects representing the generic type arguments of the type where the token is in scope, or <see langword="null" /> if that type is not generic.</param>
1746       <param name="genericMethodArguments">An array of <see cref="T:System.Type" /> objects representing the generic type arguments of the method where the token is in scope, or <see langword="null" /> if that method is not generic.</param>
1747       <returns>A <see cref="T:System.Reflection.MemberInfo" /> object representing the type or member that is identified by the specified metadata token.</returns>
1748       <exception cref="T:System.ArgumentException">
1749         <paramref name="metadataToken" /> is not a token for a type or member in the scope of the current module.
1750 -or-
1751 <paramref name="metadataToken" /> is a <see langword="MethodSpec" /> or <see langword="TypeSpec" /> whose signature contains element type <see langword="var" /> (a type parameter of a generic type) or <see langword="mvar" /> (a type parameter of a generic method), and the necessary generic type arguments were not supplied for either or both of <paramref name="genericTypeArguments" /> and <paramref name="genericMethodArguments" />.
1752 -or-
1753 <paramref name="metadataToken" /> identifies a property or event.</exception>
1754       <exception cref="T:System.ArgumentOutOfRangeException">
1755         <paramref name="metadataToken" /> is not a valid token in the scope of the current module.</exception>
1756     </member>
1757     <member name="M:System.Reflection.Emit.ModuleBuilder.ResolveMethod(System.Int32,System.Type[],System.Type[])">
1758       <summary>Returns the method or constructor identified by the specified metadata token, in the context defined by the specified generic type parameters.</summary>
1759       <param name="metadataToken">A metadata token that identifies a method or constructor in the module.</param>
1760       <param name="genericTypeArguments">An array of <see cref="T:System.Type" /> objects representing the generic type arguments of the type where the token is in scope, or <see langword="null" /> if that type is not generic.</param>
1761       <param name="genericMethodArguments">An array of <see cref="T:System.Type" /> objects representing the generic type arguments of the method where the token is in scope, or <see langword="null" /> if that method is not generic.</param>
1762       <returns>A <see cref="T:System.Reflection.MethodBase" /> object representing the method that is identified by the specified metadata token.</returns>
1763       <exception cref="T:System.ArgumentException">
1764         <paramref name="metadataToken" /> is not a token for a method or constructor in the scope of the current module.
1765 -or-
1766 <paramref name="metadataToken" /> is a <see langword="MethodSpec" /> whose signature contains element type <see langword="var" /> (a type parameter of a generic type) or <see langword="mvar" /> (a type parameter of a generic method), and the necessary generic type arguments were not supplied for either or both of <paramref name="genericTypeArguments" /> and <paramref name="genericMethodArguments" />.</exception>
1767       <exception cref="T:System.ArgumentOutOfRangeException">
1768         <paramref name="metadataToken" /> is not a valid token in the scope of the current module.</exception>
1769     </member>
1770     <member name="M:System.Reflection.Emit.ModuleBuilder.ResolveSignature(System.Int32)">
1771       <summary>Returns the signature blob identified by a metadata token.</summary>
1772       <param name="metadataToken">A metadata token that identifies a signature in the module.</param>
1773       <returns>An array of bytes representing the signature blob.</returns>
1774       <exception cref="T:System.ArgumentException">
1775         <paramref name="metadataToken" /> is not a valid <see langword="MemberRef" />, <see langword="MethodDef" />, <see langword="TypeSpec" />, signature, or <see langword="FieldDef" /> token in the scope of the current module.</exception>
1776       <exception cref="T:System.ArgumentOutOfRangeException">
1777         <paramref name="metadataToken" /> is not a valid token in the scope of the current module.</exception>
1778     </member>
1779     <member name="M:System.Reflection.Emit.ModuleBuilder.ResolveString(System.Int32)">
1780       <summary>Returns the string identified by the specified metadata token.</summary>
1781       <param name="metadataToken">A metadata token that identifies a string in the string heap of the module.</param>
1782       <returns>A <see cref="T:System.String" /> containing a string value from the metadata string heap.</returns>
1783       <exception cref="T:System.ArgumentException">
1784         <paramref name="metadataToken" /> is not a token for a string in the scope of the current module.</exception>
1785       <exception cref="T:System.ArgumentOutOfRangeException">
1786         <paramref name="metadataToken" /> is not a valid token in the scope of the current module.</exception>
1787     </member>
1788     <member name="M:System.Reflection.Emit.ModuleBuilder.ResolveType(System.Int32,System.Type[],System.Type[])">
1789       <summary>Returns the type identified by the specified metadata token, in the context defined by the specified generic type parameters.</summary>
1790       <param name="metadataToken">A metadata token that identifies a type in the module.</param>
1791       <param name="genericTypeArguments">An array of <see cref="T:System.Type" /> objects representing the generic type arguments of the type where the token is in scope, or <see langword="null" /> if that type is not generic.</param>
1792       <param name="genericMethodArguments">An array of <see cref="T:System.Type" /> objects representing the generic type arguments of the method where the token is in scope, or <see langword="null" /> if that method is not generic.</param>
1793       <returns>A <see cref="T:System.Type" /> object representing the type that is identified by the specified metadata token.</returns>
1794       <exception cref="T:System.ArgumentException">
1795         <paramref name="metadataToken" /> is not a token for a type in the scope of the current module.
1796 -or-
1797 <paramref name="metadataToken" /> is a <see langword="TypeSpec" /> whose signature contains element type <see langword="var" /> (a type parameter of a generic type) or <see langword="mvar" /> (a type parameter of a generic method), and the necessary generic type arguments were not supplied for either or both of <paramref name="genericTypeArguments" /> and <paramref name="genericMethodArguments" />.</exception>
1798       <exception cref="T:System.ArgumentOutOfRangeException">
1799         <paramref name="metadataToken" /> is not a valid token in the scope of the current module.</exception>
1800     </member>
1801     <member name="P:System.Reflection.Emit.ModuleBuilder.ScopeName">
1802       <summary>Gets a string that represents the name of the dynamic module.</summary>
1803       <returns>The name of the dynamic module.</returns>
1804     </member>
1805     <member name="M:System.Reflection.Emit.ModuleBuilder.SetCustomAttribute(System.Reflection.ConstructorInfo,System.Byte[])">
1806       <summary>Applies a custom attribute to this module by using a specified binary large object (BLOB) that represents the attribute.</summary>
1807       <param name="con">The constructor for the custom attribute.</param>
1808       <param name="binaryAttribute">A byte BLOB representing the attribute.</param>
1809       <exception cref="T:System.ArgumentNullException">
1810         <paramref name="con" /> or <paramref name="binaryAttribute" /> is <see langword="null" />.</exception>
1811     </member>
1812     <member name="M:System.Reflection.Emit.ModuleBuilder.SetCustomAttribute(System.Reflection.Emit.CustomAttributeBuilder)">
1813       <summary>Applies a custom attribute to this module by using a custom attribute builder.</summary>
1814       <param name="customBuilder">An instance of a helper class that specifies the custom attribute to apply.</param>
1815       <exception cref="T:System.ArgumentNullException">
1816         <paramref name="customBuilder" /> is <see langword="null" />.</exception>
1817     </member>
1818     <member name="T:System.Reflection.Emit.PropertyBuilder">
1819       <summary>Defines the properties for a type.</summary>
1820     </member>
1821     <member name="M:System.Reflection.Emit.PropertyBuilder.AddOtherMethod(System.Reflection.Emit.MethodBuilder)">
1822       <summary>Adds one of the other methods associated with this property.</summary>
1823       <param name="mdBuilder">A <see langword="MethodBuilder" /> object that represents the other method.</param>
1824       <exception cref="T:System.ArgumentNullException">
1825         <paramref name="mdBuilder" /> is <see langword="null" />.</exception>
1826       <exception cref="T:System.InvalidOperationException">
1827         <see cref="M:System.Reflection.Emit.TypeBuilder.CreateType" /> has been called on the enclosing type.</exception>
1828     </member>
1829     <member name="P:System.Reflection.Emit.PropertyBuilder.Attributes">
1830       <summary>Gets the attributes for this property.</summary>
1831       <returns>Attributes of this property.</returns>
1832     </member>
1833     <member name="P:System.Reflection.Emit.PropertyBuilder.CanRead">
1834       <summary>Gets a value indicating whether the property can be read.</summary>
1835       <returns>
1836         <see langword="true" /> if this property can be read; otherwise, <see langword="false" />.</returns>
1837     </member>
1838     <member name="P:System.Reflection.Emit.PropertyBuilder.CanWrite">
1839       <summary>Gets a value indicating whether the property can be written to.</summary>
1840       <returns>
1841         <see langword="true" /> if this property can be written to; otherwise, <see langword="false" />.</returns>
1842     </member>
1843     <member name="P:System.Reflection.Emit.PropertyBuilder.DeclaringType">
1844       <summary>Gets the class that declares this member.</summary>
1845       <returns>The <see langword="Type" /> object for the class that declares this member.</returns>
1846     </member>
1847     <member name="M:System.Reflection.Emit.PropertyBuilder.GetAccessors(System.Boolean)">
1848       <summary>Returns an array of the public and non-public <see langword="get" /> and <see langword="set" /> accessors on this property.</summary>
1849       <param name="nonPublic">Indicates whether non-public methods should be returned in the <see langword="MethodInfo" /> array. <see langword="true" /> if non-public methods are to be included; otherwise, <see langword="false" />.</param>
1850       <returns>An array of type <see langword="MethodInfo" /> containing the matching public or non-public accessors, or an empty array if matching accessors do not exist on this property.</returns>
1851       <exception cref="T:System.NotSupportedException">This method is not supported.</exception>
1852     </member>
1853     <member name="M:System.Reflection.Emit.PropertyBuilder.GetCustomAttributes(System.Boolean)">
1854       <summary>Returns an array of all the custom attributes for this property.</summary>
1855       <param name="inherit">If <see langword="true" />, walks up this property's inheritance chain to find the custom attributes</param>
1856       <returns>An array of all the custom attributes.</returns>
1857       <exception cref="T:System.NotSupportedException">This method is not supported.</exception>
1858     </member>
1859     <member name="M:System.Reflection.Emit.PropertyBuilder.GetCustomAttributes(System.Type,System.Boolean)">
1860       <summary>Returns an array of custom attributes identified by <see cref="T:System.Type" />.</summary>
1861       <param name="attributeType">An array of custom attributes identified by type.</param>
1862       <param name="inherit">If <see langword="true" />, walks up this property's inheritance chain to find the custom attributes.</param>
1863       <returns>An array of custom attributes defined on this reflected member, or <see langword="null" /> if no attributes are defined on this member.</returns>
1864       <exception cref="T:System.NotSupportedException">This method is not supported.</exception>
1865     </member>
1866     <member name="M:System.Reflection.Emit.PropertyBuilder.GetGetMethod(System.Boolean)">
1867       <summary>Returns the public and non-public get accessor for this property.</summary>
1868       <param name="nonPublic">Indicates whether non-public get accessors should be returned. <see langword="true" /> if non-public methods are to be included; otherwise, <see langword="false" />.</param>
1869       <returns>A <see langword="MethodInfo" /> object representing the get accessor for this property, if <paramref name="nonPublic" /> is <see langword="true" />. Returns <see langword="null" /> if <paramref name="nonPublic" /> is <see langword="false" /> and the get accessor is non-public, or if <paramref name="nonPublic" /> is <see langword="true" /> but no get accessors exist.</returns>
1870     </member>
1871     <member name="M:System.Reflection.Emit.PropertyBuilder.GetIndexParameters">
1872       <summary>Returns an array of all the index parameters for the property.</summary>
1873       <returns>An array of type <see langword="ParameterInfo" /> containing the parameters for the indexes.</returns>
1874       <exception cref="T:System.NotSupportedException">This method is not supported.</exception>
1875     </member>
1876     <member name="M:System.Reflection.Emit.PropertyBuilder.GetSetMethod(System.Boolean)">
1877       <summary>Returns the set accessor for this property.</summary>
1878       <param name="nonPublic">Indicates whether the accessor should be returned if it is non-public. <see langword="true" /> if non-public methods are to be included; otherwise, <see langword="false" />.</param>
1879       <returns>The property's <see langword="Set" /> method, or <see langword="null" />, as shown in the following table.
1880   Value  
1881   
1882   Condition  
1883   
1884   A <see cref="T:System.Reflection.MethodInfo" /> object representing the Set method for this property.  
1885   
1886   The set accessor is public.  
1887   
1888  <paramref name="nonPublic" /> is true and non-public methods can be returned.  
1889   
1890   null  
1891   
1892  <paramref name="nonPublic" /> is true, but the property is read-only.  
1893   
1894  <paramref name="nonPublic" /> is false and the set accessor is non-public.</returns>
1895     </member>
1896     <member name="M:System.Reflection.Emit.PropertyBuilder.GetValue(System.Object,System.Object[])">
1897       <summary>Gets the value of the indexed property by calling the property's getter method.</summary>
1898       <param name="obj">The object whose property value will be returned.</param>
1899       <param name="index">Optional index values for indexed properties. This value should be <see langword="null" /> for non-indexed properties.</param>
1900       <returns>The value of the specified indexed property.</returns>
1901       <exception cref="T:System.NotSupportedException">This method is not supported.</exception>
1902     </member>
1903     <member name="M:System.Reflection.Emit.PropertyBuilder.GetValue(System.Object,System.Reflection.BindingFlags,System.Reflection.Binder,System.Object[],System.Globalization.CultureInfo)">
1904       <summary>Gets the value of a property having the specified binding, index, and <see langword="CultureInfo" />.</summary>
1905       <param name="obj">The object whose property value will be returned.</param>
1906       <param name="invokeAttr">The invocation attribute. This must be a bit flag from <see langword="BindingFlags" /> : <see langword="InvokeMethod" />, <see langword="CreateInstance" />, <see langword="Static" />, <see langword="GetField" />, <see langword="SetField" />, <see langword="GetProperty" />, or <see langword="SetProperty" />. A suitable invocation attribute must be specified. If a static member is to be invoked, the <see langword="Static" /> flag of <see langword="BindingFlags" /> must be set.</param>
1907       <param name="binder">An object that enables the binding, coercion of argument types, invocation of members, and retrieval of <see langword="MemberInfo" /> objects using reflection. If <paramref name="binder" /> is <see langword="null" />, the default binder is used.</param>
1908       <param name="index">Optional index values for indexed properties. This value should be <see langword="null" /> for non-indexed properties.</param>
1909       <param name="culture">The <see langword="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 <see langword="CultureInfo.Parent" /> method will be called successively in search of a match. If this value is <see langword="null" />, the <see langword="CultureInfo" /> is obtained from the <see langword="CultureInfo.CurrentUICulture" /> property.</param>
1910       <returns>The property value for <paramref name="obj" />.</returns>
1911       <exception cref="T:System.NotSupportedException">This method is not supported.</exception>
1912     </member>
1913     <member name="M:System.Reflection.Emit.PropertyBuilder.IsDefined(System.Type,System.Boolean)">
1914       <summary>Indicates whether one or more instance of <paramref name="attributeType" /> is defined on this property.</summary>
1915       <param name="attributeType">The <see langword="Type" /> object to which the custom attributes are applied.</param>
1916       <param name="inherit">Specifies whether to walk up this property's inheritance chain to find the custom attributes.</param>
1917       <returns>
1918         <see langword="true" /> if one or more instance of <paramref name="attributeType" /> is defined on this property; otherwise <see langword="false" />.</returns>
1919       <exception cref="T:System.NotSupportedException">This method is not supported.</exception>
1920     </member>
1921     <member name="P:System.Reflection.Emit.PropertyBuilder.Module">
1922       <summary>Gets the module in which the type that declares the current property is being defined.</summary>
1923       <returns>The <see cref="T:System.Reflection.Module" /> in which the type that declares the current property is defined.</returns>
1924     </member>
1925     <member name="P:System.Reflection.Emit.PropertyBuilder.Name">
1926       <summary>Gets the name of this member.</summary>
1927       <returns>A <see cref="T:System.String" /> containing the name of this member.</returns>
1928     </member>
1929     <member name="P:System.Reflection.Emit.PropertyBuilder.PropertyType">
1930       <summary>Gets the type of the field of this property.</summary>
1931       <returns>The type of this property.</returns>
1932     </member>
1933     <member name="P:System.Reflection.Emit.PropertyBuilder.ReflectedType">
1934       <summary>Gets the class object that was used to obtain this instance of <see langword="MemberInfo" />.</summary>
1935       <returns>The <see langword="Type" /> object through which this <see langword="MemberInfo" /> object was obtained.</returns>
1936     </member>
1937     <member name="M:System.Reflection.Emit.PropertyBuilder.SetConstant(System.Object)">
1938       <summary>Sets the default value of this property.</summary>
1939       <param name="defaultValue">The default value of this property.</param>
1940       <exception cref="T:System.InvalidOperationException">
1941         <see cref="M:System.Reflection.Emit.TypeBuilder.CreateType" /> has been called on the enclosing type.</exception>
1942       <exception cref="T:System.ArgumentException">The property is not one of the supported types.
1943 -or-
1944 The type of <paramref name="defaultValue" /> does not match the type of the property.
1945 -or-
1946 The property is of type <see cref="T:System.Object" /> or other reference type, <paramref name="defaultValue" /> is not <see langword="null" />, and the value cannot be assigned to the reference type.</exception>
1947     </member>
1948     <member name="M:System.Reflection.Emit.PropertyBuilder.SetCustomAttribute(System.Reflection.ConstructorInfo,System.Byte[])">
1949       <summary>Set a custom attribute using a specified custom attribute blob.</summary>
1950       <param name="con">The constructor for the custom attribute.</param>
1951       <param name="binaryAttribute">A byte blob representing the attributes.</param>
1952       <exception cref="T:System.ArgumentNullException">
1953         <paramref name="con" /> or <paramref name="binaryAttribute" /> is <see langword="null" />.</exception>
1954       <exception cref="T:System.InvalidOperationException">
1955         <see cref="M:System.Reflection.Emit.TypeBuilder.CreateType" /> has been called on the enclosing type.</exception>
1956     </member>
1957     <member name="M:System.Reflection.Emit.PropertyBuilder.SetCustomAttribute(System.Reflection.Emit.CustomAttributeBuilder)">
1958       <summary>Set a custom attribute using a custom attribute builder.</summary>
1959       <param name="customBuilder">An instance of a helper class to define the custom attribute.</param>
1960       <exception cref="T:System.ArgumentNullException">
1961         <paramref name="customBuilder" /> is <see langword="null" />.</exception>
1962       <exception cref="T:System.InvalidOperationException">if <see cref="M:System.Reflection.Emit.TypeBuilder.CreateType" /> has been called on the enclosing type.</exception>
1963     </member>
1964     <member name="M:System.Reflection.Emit.PropertyBuilder.SetGetMethod(System.Reflection.Emit.MethodBuilder)">
1965       <summary>Sets the method that gets the property value.</summary>
1966       <param name="mdBuilder">A <see langword="MethodBuilder" /> object that represents the method that gets the property value.</param>
1967       <exception cref="T:System.ArgumentNullException">
1968         <paramref name="mdBuilder" /> is <see langword="null" />.</exception>
1969       <exception cref="T:System.InvalidOperationException">
1970         <see cref="M:System.Reflection.Emit.TypeBuilder.CreateType" /> has been called on the enclosing type.</exception>
1971     </member>
1972     <member name="M:System.Reflection.Emit.PropertyBuilder.SetSetMethod(System.Reflection.Emit.MethodBuilder)">
1973       <summary>Sets the method that sets the property value.</summary>
1974       <param name="mdBuilder">A <see langword="MethodBuilder" /> object that represents the method that sets the property value.</param>
1975       <exception cref="T:System.ArgumentNullException">
1976         <paramref name="mdBuilder" /> is <see langword="null" />.</exception>
1977       <exception cref="T:System.InvalidOperationException">
1978         <see cref="M:System.Reflection.Emit.TypeBuilder.CreateType" /> has been called on the enclosing type.</exception>
1979     </member>
1980     <member name="M:System.Reflection.Emit.PropertyBuilder.SetValue(System.Object,System.Object,System.Object[])">
1981       <summary>Sets the value of the property with optional index values for index properties.</summary>
1982       <param name="obj">The object whose property value will be set.</param>
1983       <param name="value">The new value for this property.</param>
1984       <param name="index">Optional index values for indexed properties. This value should be <see langword="null" /> for non-indexed properties.</param>
1985       <exception cref="T:System.NotSupportedException">This method is not supported.</exception>
1986     </member>
1987     <member name="M:System.Reflection.Emit.PropertyBuilder.SetValue(System.Object,System.Object,System.Reflection.BindingFlags,System.Reflection.Binder,System.Object[],System.Globalization.CultureInfo)">
1988       <summary>Sets the property value for the given object to the given value.</summary>
1989       <param name="obj">The object whose property value will be returned.</param>
1990       <param name="value">The new value for this property.</param>
1991       <param name="invokeAttr">The invocation attribute. This must be a bit flag from <see langword="BindingFlags" /> : <see langword="InvokeMethod" />, <see langword="CreateInstance" />, <see langword="Static" />, <see langword="GetField" />, <see langword="SetField" />, <see langword="GetProperty" />, or <see langword="SetProperty" />. A suitable invocation attribute must be specified. If a static member is to be invoked, the <see langword="Static" /> flag of <see langword="BindingFlags" /> must be set.</param>
1992       <param name="binder">An object that enables the binding, coercion of argument types, invocation of members, and retrieval of <see langword="MemberInfo" /> objects using reflection. If <paramref name="binder" /> is <see langword="null" />, the default binder is used.</param>
1993       <param name="index">Optional index values for indexed properties. This value should be <see langword="null" /> for non-indexed properties.</param>
1994       <param name="culture">The <see langword="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 <see langword="CultureInfo.Parent" /> method will be called successively in search of a match. If this value is <see langword="null" />, the <see langword="CultureInfo" /> is obtained from the <see langword="CultureInfo.CurrentUICulture" /> property.</param>
1995       <exception cref="T:System.NotSupportedException">This method is not supported.</exception>
1996     </member>
1997     <member name="T:System.Reflection.Emit.TypeBuilder">
1998       <summary>Defines and creates new instances of classes during run time.</summary>
1999     </member>
2000     <member name="M:System.Reflection.Emit.TypeBuilder.AddInterfaceImplementation(System.Type)">
2001       <summary>Adds an interface that this type implements.</summary>
2002       <param name="interfaceType">The interface that this type implements.</param>
2003       <exception cref="T:System.ArgumentNullException">
2004         <paramref name="interfaceType" /> is <see langword="null" />.</exception>
2005       <exception cref="T:System.InvalidOperationException">The type was previously created using <see cref="M:System.Reflection.Emit.TypeBuilder.CreateType" />.</exception>
2006     </member>
2007     <member name="P:System.Reflection.Emit.TypeBuilder.Assembly">
2008       <summary>Retrieves the dynamic assembly that contains this type definition.</summary>
2009       <returns>Read-only. Retrieves the dynamic assembly that contains this type definition.</returns>
2010     </member>
2011     <member name="P:System.Reflection.Emit.TypeBuilder.AssemblyQualifiedName">
2012       <summary>Returns the full name of this type qualified by the display name of the assembly.</summary>
2013       <returns>Read-only. The full name of this type qualified by the display name of the assembly.</returns>
2014     </member>
2015     <member name="P:System.Reflection.Emit.TypeBuilder.BaseType">
2016       <summary>Retrieves the base type of this type.</summary>
2017       <returns>Read-only. Retrieves the base type of this type.</returns>
2018     </member>
2019     <member name="M:System.Reflection.Emit.TypeBuilder.CreateType">
2020       <summary>Creates a <see cref="T:System.Type" /> object for the class. After defining fields and methods on the class, <see langword="CreateType" /> is called in order to load its <see langword="Type" /> object.</summary>
2021       <returns>Returns the new <see cref="T:System.Type" /> object for this class.</returns>
2022       <exception cref="T:System.InvalidOperationException">The enclosing type has not been created.
2023 -or-
2024 This type is non-abstract and contains an abstract method.
2025 -or-
2026 This type is not an abstract class or an interface and has a method without a method body.</exception>
2027       <exception cref="T:System.ArgumentException">Bad label content in <see cref="T:System.Reflection.Emit.ILGenerator" />: You have defined a label without calling <see cref="M:System.Reflection.Emit.ILGenerator.MarkLabel(System.Reflection.Emit.Label)" />.</exception>
2028       <exception cref="T:System.NotSupportedException">The type contains invalid Microsoft intermediate language (MSIL) code.
2029 -or-
2030 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>
2031       <exception cref="T:System.TypeLoadException">The type cannot be loaded. For example, it contains a <see langword="static" /> method that has the calling convention <see cref="F:System.Reflection.CallingConventions.HasThis" />.</exception>
2032     </member>
2033     <member name="M:System.Reflection.Emit.TypeBuilder.CreateTypeInfo">
2034       <summary>Gets a <see cref="T:System.Reflection.TypeInfo" /> object that represents this type.</summary>
2035       <returns>An object that represents this type.</returns>
2036     </member>
2037     <member name="P:System.Reflection.Emit.TypeBuilder.DeclaringMethod">
2038       <summary>Gets the method that declared the current generic type parameter.</summary>
2039       <returns>A <see cref="T:System.Reflection.MethodBase" /> that represents the method that declared the current type, if the current type is a generic type parameter; otherwise, <see langword="null" />.</returns>
2040     </member>
2041     <member name="P:System.Reflection.Emit.TypeBuilder.DeclaringType">
2042       <summary>Returns the type that declared this type.</summary>
2043       <returns>Read-only. The type that declared this type.</returns>
2044     </member>
2045     <member name="M:System.Reflection.Emit.TypeBuilder.DefineConstructor(System.Reflection.MethodAttributes,System.Reflection.CallingConventions,System.Type[])">
2046       <summary>Adds a new constructor to the type, with the given attributes and signature.</summary>
2047       <param name="attributes">The attributes of the constructor.</param>
2048       <param name="callingConvention">The calling convention of the constructor.</param>
2049       <param name="parameterTypes">The parameter types of the constructor.</param>
2050       <returns>The defined constructor.</returns>
2051       <exception cref="T:System.InvalidOperationException">The type was previously created using <see cref="M:System.Reflection.Emit.TypeBuilder.CreateType" />.</exception>
2052     </member>
2053     <member name="M:System.Reflection.Emit.TypeBuilder.DefineConstructor(System.Reflection.MethodAttributes,System.Reflection.CallingConventions,System.Type[],System.Type[][],System.Type[][])">
2054       <summary>Adds a new constructor to the type, with the given attributes, signature, and custom modifiers.</summary>
2055       <param name="attributes">The attributes of the constructor.</param>
2056       <param name="callingConvention">The calling convention of the constructor.</param>
2057       <param name="parameterTypes">The parameter types of the constructor.</param>
2058       <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" />. If a particular parameter has no required custom modifiers, specify <see langword="null" /> instead of an array of types. If none of the parameters have required custom modifiers, specify <see langword="null" /> instead of an array of arrays.</param>
2059       <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" />. If a particular parameter has no optional custom modifiers, specify <see langword="null" /> instead of an array of types. If none of the parameters have optional custom modifiers, specify <see langword="null" /> instead of an array of arrays.</param>
2060       <returns>The defined constructor.</returns>
2061       <exception cref="T:System.ArgumentException">The size of <paramref name="requiredCustomModifiers" /> or <paramref name="optionalCustomModifiers" /> does not equal the size of <paramref name="parameterTypes" />.</exception>
2062       <exception cref="T:System.InvalidOperationException">The type was previously created using <see cref="M:System.Reflection.Emit.TypeBuilder.CreateType" />.
2063 -or-
2064 For the current dynamic type, the <see cref="P:System.Reflection.Emit.TypeBuilder.IsGenericType" /> property is <see langword="true" />, but the <see cref="P:System.Reflection.Emit.TypeBuilder.IsGenericTypeDefinition" /> property is <see langword="false" />.</exception>
2065     </member>
2066     <member name="M:System.Reflection.Emit.TypeBuilder.DefineDefaultConstructor(System.Reflection.MethodAttributes)">
2067       <summary>Defines the parameterless constructor. The constructor defined here will simply call the parameterless constructor of the parent.</summary>
2068       <param name="attributes">A <see langword="MethodAttributes" /> object representing the attributes to be applied to the constructor.</param>
2069       <returns>Returns the constructor.</returns>
2070       <exception cref="T:System.NotSupportedException">The parent type (base type) does not have a parameterless constructor.</exception>
2071       <exception cref="T:System.InvalidOperationException">The type was previously created using <see cref="M:System.Reflection.Emit.TypeBuilder.CreateType" />.
2072 -or-
2073 For the current dynamic type, the <see cref="P:System.Reflection.Emit.TypeBuilder.IsGenericType" /> property is <see langword="true" />, but the <see cref="P:System.Reflection.Emit.TypeBuilder.IsGenericTypeDefinition" /> property is <see langword="false" />.</exception>
2074     </member>
2075     <member name="M:System.Reflection.Emit.TypeBuilder.DefineEvent(System.String,System.Reflection.EventAttributes,System.Type)">
2076       <summary>Adds a new event to the type, with the given name, attributes and event type.</summary>
2077       <param name="name">The name of the event. <paramref name="name" /> cannot contain embedded nulls.</param>
2078       <param name="attributes">The attributes of the event.</param>
2079       <param name="eventtype">The type of the event.</param>
2080       <returns>The defined event.</returns>
2081       <exception cref="T:System.ArgumentException">The length of <paramref name="name" /> is zero.</exception>
2082       <exception cref="T:System.ArgumentNullException">
2083         <paramref name="name" /> is <see langword="null" />.
2084 -or-
2085 <paramref name="eventtype" /> is <see langword="null" />.</exception>
2086       <exception cref="T:System.InvalidOperationException">The type was previously created using <see cref="M:System.Reflection.Emit.TypeBuilder.CreateType" />.</exception>
2087     </member>
2088     <member name="M:System.Reflection.Emit.TypeBuilder.DefineField(System.String,System.Type,System.Reflection.FieldAttributes)">
2089       <summary>Adds a new field to the type, with the given name, attributes, and field type.</summary>
2090       <param name="fieldName">The name of the field. <paramref name="fieldName" /> cannot contain embedded nulls.</param>
2091       <param name="type">The type of the field</param>
2092       <param name="attributes">The attributes of the field.</param>
2093       <returns>The defined field.</returns>
2094       <exception cref="T:System.ArgumentException">The length of <paramref name="fieldName" /> is zero.
2095 -or-
2096 <paramref name="type" /> is System.Void.
2097 -or-
2098 A total size was specified for the parent class of this field.</exception>
2099       <exception cref="T:System.ArgumentNullException">
2100         <paramref name="fieldName" /> is <see langword="null" />.</exception>
2101       <exception cref="T:System.InvalidOperationException">The type was previously created using <see cref="M:System.Reflection.Emit.TypeBuilder.CreateType" />.</exception>
2102     </member>
2103     <member name="M:System.Reflection.Emit.TypeBuilder.DefineField(System.String,System.Type,System.Type[],System.Type[],System.Reflection.FieldAttributes)">
2104       <summary>Adds a new field to the type, with the given name, attributes, field type, and custom modifiers.</summary>
2105       <param name="fieldName">The name of the field. <paramref name="fieldName" /> cannot contain embedded nulls.</param>
2106       <param name="type">The type of the field</param>
2107       <param name="requiredCustomModifiers">An array of types representing the required custom modifiers for the field, such as <see cref="T:Microsoft.VisualC.IsConstModifier" />.</param>
2108       <param name="optionalCustomModifiers">An array of types representing the optional custom modifiers for the field, such as <see cref="T:Microsoft.VisualC.IsConstModifier" />.</param>
2109       <param name="attributes">The attributes of the field.</param>
2110       <returns>The defined field.</returns>
2111       <exception cref="T:System.ArgumentException">The length of <paramref name="fieldName" /> is zero.
2112 -or-
2113 <paramref name="type" /> is System.Void.
2114 -or-
2115 A total size was specified for the parent class of this field.</exception>
2116       <exception cref="T:System.ArgumentNullException">
2117         <paramref name="fieldName" /> is <see langword="null" />.</exception>
2118       <exception cref="T:System.InvalidOperationException">The type was previously created using <see cref="M:System.Reflection.Emit.TypeBuilder.CreateType" />.</exception>
2119     </member>
2120     <member name="M:System.Reflection.Emit.TypeBuilder.DefineGenericParameters(System.String[])">
2121       <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" /> objects that can be used to set their constraints.</summary>
2122       <param name="names">An array of names for the generic type parameters.</param>
2123       <returns>An array of <see cref="T:System.Reflection.Emit.GenericTypeParameterBuilder" /> objects that can be used to define the constraints of the generic type parameters for the current type.</returns>
2124       <exception cref="T:System.InvalidOperationException">Generic type parameters have already been defined for this type.</exception>
2125       <exception cref="T:System.ArgumentNullException">
2126         <paramref name="names" /> is <see langword="null" />.
2127 -or-
2128 An element of <paramref name="names" /> is <see langword="null" />.</exception>
2129       <exception cref="T:System.ArgumentException">
2130         <paramref name="names" /> is an empty array.</exception>
2131     </member>
2132     <member name="M:System.Reflection.Emit.TypeBuilder.DefineInitializedData(System.String,System.Byte[],System.Reflection.FieldAttributes)">
2133       <summary>Defines initialized data field in the .sdata section of the portable executable (PE) file.</summary>
2134       <param name="name">The name used to refer to the data. <paramref name="name" /> cannot contain embedded nulls.</param>
2135       <param name="data">The blob of data.</param>
2136       <param name="attributes">The attributes for the field.</param>
2137       <returns>A field to reference the data.</returns>
2138       <exception cref="T:System.ArgumentException">Length of <paramref name="name" /> is zero.
2139 -or-
2140 The size of the data is less than or equal to zero, or greater than or equal to 0x3f0000.</exception>
2141       <exception cref="T:System.ArgumentNullException">
2142         <paramref name="name" /> or <paramref name="data" /> is <see langword="null" />.</exception>
2143       <exception cref="T:System.InvalidOperationException">
2144         <see cref="M:System.Reflection.Emit.TypeBuilder.CreateType" /> has been previously called.</exception>
2145     </member>
2146     <member name="M:System.Reflection.Emit.TypeBuilder.DefineMethod(System.String,System.Reflection.MethodAttributes)">
2147       <summary>Adds a new method to the type, with the specified name and method attributes.</summary>
2148       <param name="name">The name of the method. <paramref name="name" /> cannot contain embedded nulls.</param>
2149       <param name="attributes">The attributes of the method.</param>
2150       <returns>A <see cref="T:System.Reflection.Emit.MethodBuilder" /> representing the newly defined method.</returns>
2151       <exception cref="T:System.ArgumentException">The length of <paramref name="name" /> is zero.
2152 -or-
2153 The type of the parent of this method is an interface, and this method is not virtual (<see langword="Overridable" /> in Visual Basic).</exception>
2154       <exception cref="T:System.ArgumentNullException">
2155         <paramref name="name" /> is <see langword="null" />.</exception>
2156       <exception cref="T:System.InvalidOperationException">The type was previously created using <see cref="M:System.Reflection.Emit.TypeBuilder.CreateType" />.
2157 -or-
2158 For the current dynamic type, the <see cref="P:System.Reflection.Emit.TypeBuilder.IsGenericType" /> property is <see langword="true" />, but the <see cref="P:System.Reflection.Emit.TypeBuilder.IsGenericTypeDefinition" /> property is <see langword="false" />.</exception>
2159     </member>
2160     <member name="M:System.Reflection.Emit.TypeBuilder.DefineMethod(System.String,System.Reflection.MethodAttributes,System.Reflection.CallingConventions)">
2161       <summary>Adds a new method to the type, with the specified name, method attributes, and calling convention.</summary>
2162       <param name="name">The name of the method. <paramref name="name" /> cannot contain embedded nulls.</param>
2163       <param name="attributes">The attributes of the method.</param>
2164       <param name="callingConvention">The calling convention of the method.</param>
2165       <returns>A <see cref="T:System.Reflection.Emit.MethodBuilder" /> representing the newly defined method.</returns>
2166       <exception cref="T:System.ArgumentException">The length of <paramref name="name" /> is zero.
2167 -or-
2168 The type of the parent of this method is an interface and this method is not virtual (<see langword="Overridable" /> in Visual Basic).</exception>
2169       <exception cref="T:System.ArgumentNullException">
2170         <paramref name="name" /> is <see langword="null" />.</exception>
2171       <exception cref="T:System.InvalidOperationException">The type was previously created using <see cref="M:System.Reflection.Emit.TypeBuilder.CreateType" />.
2172 -or-
2173 For the current dynamic type, the <see cref="P:System.Reflection.Emit.TypeBuilder.IsGenericType" /> property is <see langword="true" />, but the <see cref="P:System.Reflection.Emit.TypeBuilder.IsGenericTypeDefinition" /> property is <see langword="false" />.</exception>
2174     </member>
2175     <member name="M:System.Reflection.Emit.TypeBuilder.DefineMethod(System.String,System.Reflection.MethodAttributes,System.Reflection.CallingConventions,System.Type,System.Type[])">
2176       <summary>Adds a new method to the type, with the specified name, method attributes, calling convention, and method signature.</summary>
2177       <param name="name">The name of the method. <paramref name="name" /> cannot contain embedded nulls.</param>
2178       <param name="attributes">The attributes of the method.</param>
2179       <param name="callingConvention">The calling convention of the method.</param>
2180       <param name="returnType">The return type of the method.</param>
2181       <param name="parameterTypes">The types of the parameters of the method.</param>
2182       <returns>A <see cref="T:System.Reflection.Emit.MethodBuilder" /> representing the newly defined method.</returns>
2183       <exception cref="T:System.ArgumentException">The length of <paramref name="name" /> is zero.
2184 -or-
2185 The type of the parent of this method is an interface, and this method is not virtual (<see langword="Overridable" /> in Visual Basic).</exception>
2186       <exception cref="T:System.ArgumentNullException">
2187         <paramref name="name" /> is <see langword="null" />.</exception>
2188       <exception cref="T:System.InvalidOperationException">The type was previously created using <see cref="M:System.Reflection.Emit.TypeBuilder.CreateType" />.
2189 -or-
2190 For the current dynamic type, the <see cref="P:System.Reflection.Emit.TypeBuilder.IsGenericType" /> property is <see langword="true" />, but the <see cref="P:System.Reflection.Emit.TypeBuilder.IsGenericTypeDefinition" /> property is <see langword="false" />.</exception>
2191     </member>
2192     <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[][])">
2193       <summary>Adds a new method to the type, with the specified name, method attributes, calling convention, method signature, and custom modifiers.</summary>
2194       <param name="name">The name of the method. <paramref name="name" /> cannot contain embedded nulls.</param>
2195       <param name="attributes">The attributes of the method.</param>
2196       <param name="callingConvention">The calling convention of the method.</param>
2197       <param name="returnType">The return type of the method.</param>
2198       <param name="returnTypeRequiredCustomModifiers">An array of types representing the required custom modifiers, such as <see cref="T:System.Runtime.CompilerServices.IsConst" />, for the return type of the method. If the return type has no required custom modifiers, specify <see langword="null" />.</param>
2199       <param name="returnTypeOptionalCustomModifiers">An array of types representing the optional custom modifiers, such as <see cref="T:System.Runtime.CompilerServices.IsConst" />, for the return type of the method. If the return type has no optional custom modifiers, specify <see langword="null" />.</param>
2200       <param name="parameterTypes">The types of the parameters of the method.</param>
2201       <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" />. If a particular parameter has no required custom modifiers, specify <see langword="null" /> instead of an array of types. If none of the parameters have required custom modifiers, specify <see langword="null" /> instead of an array of arrays.</param>
2202       <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" />. If a particular parameter has no optional custom modifiers, specify <see langword="null" /> instead of an array of types. If none of the parameters have optional custom modifiers, specify <see langword="null" /> instead of an array of arrays.</param>
2203       <returns>A <see cref="T:System.Reflection.Emit.MethodBuilder" /> object representing the newly added method.</returns>
2204       <exception cref="T:System.ArgumentException">The length of <paramref name="name" /> is zero.
2205 -or-
2206 The type of the parent of this method is an interface, and this method is not virtual (<see langword="Overridable" /> in Visual Basic).
2207 -or-
2208 The size of <paramref name="parameterTypeRequiredCustomModifiers" /> or <paramref name="parameterTypeOptionalCustomModifiers" /> does not equal the size of <paramref name="parameterTypes" />.</exception>
2209       <exception cref="T:System.ArgumentNullException">
2210         <paramref name="name" /> is <see langword="null" />.</exception>
2211       <exception cref="T:System.InvalidOperationException">The type was previously created using <see cref="M:System.Reflection.Emit.TypeBuilder.CreateType" />.
2212 -or-
2213 For the current dynamic type, the <see cref="P:System.Reflection.Emit.TypeBuilder.IsGenericType" /> property is <see langword="true" />, but the <see cref="P:System.Reflection.Emit.TypeBuilder.IsGenericTypeDefinition" /> property is <see langword="false" />.</exception>
2214     </member>
2215     <member name="M:System.Reflection.Emit.TypeBuilder.DefineMethod(System.String,System.Reflection.MethodAttributes,System.Type,System.Type[])">
2216       <summary>Adds a new method to the type, with the specified name, method attributes, and method signature.</summary>
2217       <param name="name">The name of the method. <paramref name="name" /> cannot contain embedded nulls.</param>
2218       <param name="attributes">The attributes of the method.</param>
2219       <param name="returnType">The return type of the method.</param>
2220       <param name="parameterTypes">The types of the parameters of the method.</param>
2221       <returns>The defined method.</returns>
2222       <exception cref="T:System.ArgumentException">The length of <paramref name="name" /> is zero.
2223 -or-
2224 The type of the parent of this method is an interface, and this method is not virtual (<see langword="Overridable" /> in Visual Basic).</exception>
2225       <exception cref="T:System.ArgumentNullException">
2226         <paramref name="name" /> is <see langword="null" />.</exception>
2227       <exception cref="T:System.InvalidOperationException">The type was previously created using <see cref="M:System.Reflection.Emit.TypeBuilder.CreateType" />.
2228 -or-
2229 For the current dynamic type, the <see cref="P:System.Reflection.Emit.TypeBuilder.IsGenericType" /> property is <see langword="true" />, but the <see cref="P:System.Reflection.Emit.TypeBuilder.IsGenericTypeDefinition" /> property is <see langword="false" />.</exception>
2230     </member>
2231     <member name="M:System.Reflection.Emit.TypeBuilder.DefineMethodOverride(System.Reflection.MethodInfo,System.Reflection.MethodInfo)">
2232       <summary>Specifies a given method body that implements a given method declaration, potentially with a different name.</summary>
2233       <param name="methodInfoBody">The method body to be used. This should be a <see langword="MethodBuilder" /> object.</param>
2234       <param name="methodInfoDeclaration">The method whose declaration is to be used.</param>
2235       <exception cref="T:System.ArgumentException">
2236         <paramref name="methodInfoBody" /> does not belong to this class.</exception>
2237       <exception cref="T:System.ArgumentNullException">
2238         <paramref name="methodInfoBody" /> or <paramref name="methodInfoDeclaration" /> is <see langword="null" />.</exception>
2239       <exception cref="T:System.InvalidOperationException">The type was previously created using <see cref="M:System.Reflection.Emit.TypeBuilder.CreateType" />.
2240 -or-
2241 The declaring type of <paramref name="methodInfoBody" /> is not the type represented by this <see cref="T:System.Reflection.Emit.TypeBuilder" />.</exception>
2242     </member>
2243     <member name="M:System.Reflection.Emit.TypeBuilder.DefineNestedType(System.String)">
2244       <summary>Defines a nested type, given its name.</summary>
2245       <param name="name">The short name of the type. <paramref name="name" /> cannot contain embedded nulls.</param>
2246       <returns>The defined nested type.</returns>
2247       <exception cref="T:System.ArgumentException">Length of <paramref name="name" /> is zero or greater than 1023.
2248 -or-
2249 This operation would create a type with a duplicate <see cref="P:System.Reflection.Emit.TypeBuilder.FullName" /> in the current assembly.</exception>
2250       <exception cref="T:System.ArgumentNullException">
2251         <paramref name="name" /> is <see langword="null" />.</exception>
2252     </member>
2253     <member name="M:System.Reflection.Emit.TypeBuilder.DefineNestedType(System.String,System.Reflection.TypeAttributes)">
2254       <summary>Defines a nested type, given its name and attributes.</summary>
2255       <param name="name">The short name of the type. <paramref name="name" /> cannot contain embedded nulls.</param>
2256       <param name="attr">The attributes of the type.</param>
2257       <returns>The defined nested type.</returns>
2258       <exception cref="T:System.ArgumentException">The nested attribute is not specified.
2259 -or-
2260 This type is sealed.
2261 -or-
2262 This type is an array.
2263 -or-
2264 This type is an interface, but the nested type is not an interface.
2265 -or-
2266 The length of <paramref name="name" /> is zero or greater than 1023.
2267 -or-
2268 This operation would create a type with a duplicate <see cref="P:System.Reflection.Emit.TypeBuilder.FullName" /> in the current assembly.</exception>
2269       <exception cref="T:System.ArgumentNullException">
2270         <paramref name="name" /> is <see langword="null" />.</exception>
2271     </member>
2272     <member name="M:System.Reflection.Emit.TypeBuilder.DefineNestedType(System.String,System.Reflection.TypeAttributes,System.Type)">
2273       <summary>Defines a nested type, given its name, attributes, and the type that it extends.</summary>
2274       <param name="name">The short name of the type. <paramref name="name" /> cannot contain embedded nulls.</param>
2275       <param name="attr">The attributes of the type.</param>
2276       <param name="parent">The type that the nested type extends.</param>
2277       <returns>The defined nested type.</returns>
2278       <exception cref="T:System.ArgumentException">The nested attribute is not specified.
2279 -or-
2280 This type is sealed.
2281 -or-
2282 This type is an array.
2283 -or-
2284 This type is an interface, but the nested type is not an interface.
2285 -or-
2286 The length of <paramref name="name" /> is zero or greater than 1023.
2287 -or-
2288 This operation would create a type with a duplicate <see cref="P:System.Reflection.Emit.TypeBuilder.FullName" /> in the current assembly.</exception>
2289       <exception cref="T:System.ArgumentNullException">
2290         <paramref name="name" /> is <see langword="null" />.</exception>
2291     </member>
2292     <member name="M:System.Reflection.Emit.TypeBuilder.DefineNestedType(System.String,System.Reflection.TypeAttributes,System.Type,System.Int32)">
2293       <summary>Defines a nested type, given its name, attributes, the total size of the type, and the type that it extends.</summary>
2294       <param name="name">The short name of the type. <paramref name="name" /> cannot contain embedded nulls.</param>
2295       <param name="attr">The attributes of the type.</param>
2296       <param name="parent">The type that the nested type extends.</param>
2297       <param name="typeSize">The total size of the type.</param>
2298       <returns>The defined nested type.</returns>
2299       <exception cref="T:System.ArgumentException">The nested attribute is not specified.
2300 -or-
2301 This type is sealed.
2302 -or-
2303 This type is an array.
2304 -or-
2305 This type is an interface, but the nested type is not an interface.
2306 -or-
2307 The length of <paramref name="name" /> is zero or greater than 1023.
2308 -or-
2309 This operation would create a type with a duplicate <see cref="P:System.Reflection.Emit.TypeBuilder.FullName" /> in the current assembly.</exception>
2310       <exception cref="T:System.ArgumentNullException">
2311         <paramref name="name" /> is <see langword="null" />.</exception>
2312     </member>
2313     <member name="M:System.Reflection.Emit.TypeBuilder.DefineNestedType(System.String,System.Reflection.TypeAttributes,System.Type,System.Reflection.Emit.PackingSize)">
2314       <summary>Defines a nested type, given its name, attributes, the type that it extends, and the packing size.</summary>
2315       <param name="name">The short name of the type. <paramref name="name" /> cannot contain embedded nulls.</param>
2316       <param name="attr">The attributes of the type.</param>
2317       <param name="parent">The type that the nested type extends.</param>
2318       <param name="packSize">The packing size of the type.</param>
2319       <returns>The defined nested type.</returns>
2320       <exception cref="T:System.ArgumentException">The nested attribute is not specified.
2321 -or-
2322 This type is sealed.
2323 -or-
2324 This type is an array.
2325 -or-
2326 This type is an interface, but the nested type is not an interface.
2327 -or-
2328 The length of <paramref name="name" /> is zero or greater than 1023.
2329 -or-
2330 This operation would create a type with a duplicate <see cref="P:System.Reflection.Emit.TypeBuilder.FullName" /> in the current assembly.</exception>
2331       <exception cref="T:System.ArgumentNullException">
2332         <paramref name="name" /> is <see langword="null" />.</exception>
2333     </member>
2334     <member name="M:System.Reflection.Emit.TypeBuilder.DefineNestedType(System.String,System.Reflection.TypeAttributes,System.Type,System.Reflection.Emit.PackingSize,System.Int32)">
2335       <summary>Defines a nested type, given its name, attributes, size, and the type that it extends.</summary>
2336       <param name="name">The short name of the type. <paramref name="name" /> cannot contain embedded null values.</param>
2337       <param name="attr">The attributes of the type.</param>
2338       <param name="parent">The type that the nested type extends.</param>
2339       <param name="packSize">The packing size of the type.</param>
2340       <param name="typeSize">The total size of the type.</param>
2341       <returns>The defined nested type.</returns>
2342     </member>
2343     <member name="M:System.Reflection.Emit.TypeBuilder.DefineNestedType(System.String,System.Reflection.TypeAttributes,System.Type,System.Type[])">
2344       <summary>Defines a nested type, given its name, attributes, the type that it extends, and the interfaces that it implements.</summary>
2345       <param name="name">The short name of the type. <paramref name="name" /> cannot contain embedded nulls.</param>
2346       <param name="attr">The attributes of the type.</param>
2347       <param name="parent">The type that the nested type extends.</param>
2348       <param name="interfaces">The interfaces that the nested type implements.</param>
2349       <returns>The defined nested type.</returns>
2350       <exception cref="T:System.ArgumentException">The nested attribute is not specified.
2351 -or-
2352 This type is sealed.
2353 -or-
2354 This type is an array.
2355 -or-
2356 This type is an interface, but the nested type is not an interface.
2357 -or-
2358 The length of <paramref name="name" /> is zero or greater than 1023.
2359 -or-
2360 This operation would create a type with a duplicate <see cref="P:System.Reflection.Emit.TypeBuilder.FullName" /> in the current assembly.</exception>
2361       <exception cref="T:System.ArgumentNullException">
2362         <paramref name="name" /> is <see langword="null" />.
2363 -or-
2364 An element of the <paramref name="interfaces" /> array is <see langword="null" />.</exception>
2365     </member>
2366     <member name="M:System.Reflection.Emit.TypeBuilder.DefinePInvokeMethod(System.String,System.String,System.Reflection.MethodAttributes,System.Reflection.CallingConventions,System.Type,System.Type[],System.Runtime.InteropServices.CallingConvention,System.Runtime.InteropServices.CharSet)">
2367       <summary>Defines a <see langword="PInvoke" /> method given its name, the name of the DLL in which the method is defined, the attributes of the method, the calling convention of the method, the return type of the method, the types of the parameters of the method, and the <see langword="PInvoke" /> flags.</summary>
2368       <param name="name">The name of the <see langword="PInvoke" /> method. <paramref name="name" /> cannot contain embedded nulls.</param>
2369       <param name="dllName">The name of the DLL in which the <see langword="PInvoke" /> method is defined.</param>
2370       <param name="attributes">The attributes of the method.</param>
2371       <param name="callingConvention">The method's calling convention.</param>
2372       <param name="returnType">The method's return type.</param>
2373       <param name="parameterTypes">The types of the method's parameters.</param>
2374       <param name="nativeCallConv">The native calling convention.</param>
2375       <param name="nativeCharSet">The method's native character set.</param>
2376       <returns>The defined <see langword="PInvoke" /> method.</returns>
2377       <exception cref="T:System.ArgumentException">The method is not static.
2378 -or-
2379 The parent type is an interface.
2380 -or-
2381 The method is abstract.
2382 -or-
2383 The method was previously defined.
2384 -or-
2385 The length of <paramref name="name" /> or <paramref name="dllName" /> is zero.</exception>
2386       <exception cref="T:System.ArgumentNullException">
2387         <paramref name="name" /> or <paramref name="dllName" /> is <see langword="null" />.</exception>
2388       <exception cref="T:System.InvalidOperationException">The containing type has been previously created using <see cref="M:System.Reflection.Emit.TypeBuilder.CreateType" />.</exception>
2389     </member>
2390     <member name="M:System.Reflection.Emit.TypeBuilder.DefinePInvokeMethod(System.String,System.String,System.String,System.Reflection.MethodAttributes,System.Reflection.CallingConventions,System.Type,System.Type[],System.Runtime.InteropServices.CallingConvention,System.Runtime.InteropServices.CharSet)">
2391       <summary>Defines a <see langword="PInvoke" /> method given its name, the name of the DLL in which the method is defined, the name of the entry point, the attributes of the method, the calling convention of the method, the return type of the method, the types of the parameters of the method, and the <see langword="PInvoke" /> flags.</summary>
2392       <param name="name">The name of the <see langword="PInvoke" /> method. <paramref name="name" /> cannot contain embedded nulls.</param>
2393       <param name="dllName">The name of the DLL in which the <see langword="PInvoke" /> method is defined.</param>
2394       <param name="entryName">The name of the entry point in the DLL.</param>
2395       <param name="attributes">The attributes of the method.</param>
2396       <param name="callingConvention">The method's calling convention.</param>
2397       <param name="returnType">The method's return type.</param>
2398       <param name="parameterTypes">The types of the method's parameters.</param>
2399       <param name="nativeCallConv">The native calling convention.</param>
2400       <param name="nativeCharSet">The method's native character set.</param>
2401       <returns>The defined <see langword="PInvoke" /> method.</returns>
2402       <exception cref="T:System.ArgumentException">The method is not static.
2403 -or-
2404 The parent type is an interface.
2405 -or-
2406 The method is abstract.
2407 -or-
2408 The method was previously defined.
2409 -or-
2410 The length of <paramref name="name" />, <paramref name="dllName" />, or <paramref name="entryName" /> is zero.</exception>
2411       <exception cref="T:System.ArgumentNullException">
2412         <paramref name="name" />, <paramref name="dllName" />, or <paramref name="entryName" /> is <see langword="null" />.</exception>
2413       <exception cref="T:System.InvalidOperationException">The containing type has been previously created using <see cref="M:System.Reflection.Emit.TypeBuilder.CreateType" />.</exception>
2414     </member>
2415     <member name="M:System.Reflection.Emit.TypeBuilder.DefinePInvokeMethod(System.String,System.String,System.Type[][],System.Runtime.InteropServices.CallingConvention,System.Runtime.InteropServices.CharSet,System.String,System.Reflection.MethodAttributes,System.Reflection.CallingConventions,System.Type,System.Type[],System.Type[],System.Type[],System.Type[][])">
2416       <summary>Defines a <see langword="PInvoke" /> method given its name, the name of the DLL in which the method is defined, the name of the entry point, the attributes of the method, the calling convention of the method, the return type of the method, the types of the parameters of the method, the <see langword="PInvoke" /> flags, and custom modifiers for the parameters and return type.</summary>
2417       <param name="name">The name of the <see langword="PInvoke" /> method. <paramref name="name" /> cannot contain embedded nulls.</param>
2418       <param name="dllName">The name of the DLL in which the <see langword="PInvoke" /> method is defined.</param>
2419       <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" />. If a particular parameter has no optional custom modifiers, specify <see langword="null" /> instead of an array of types. If none of the parameters have optional custom modifiers, specify <see langword="null" /> instead of an array of arrays.</param>
2420       <param name="nativeCallConv">The native calling convention.</param>
2421       <param name="nativeCharSet">The method's native character set.</param>
2422       <param name="entryName">The name of the entry point in the DLL.</param>
2423       <param name="attributes">The attributes of the method.</param>
2424       <param name="callingConvention">The method's calling convention.</param>
2425       <param name="returnType">The method's return type.</param>
2426       <param name="returnTypeRequiredCustomModifiers">An array of types representing the required custom modifiers, such as <see cref="T:System.Runtime.CompilerServices.IsConst" />, for the return type of the method. If the return type has no required custom modifiers, specify <see langword="null" />.</param>
2427       <param name="returnTypeOptionalCustomModifiers">An array of types representing the optional custom modifiers, such as <see cref="T:System.Runtime.CompilerServices.IsConst" />, for the return type of the method. If the return type has no optional custom modifiers, specify <see langword="null" />.</param>
2428       <param name="parameterTypes">The types of the method's parameters.</param>
2429       <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" />. If a particular parameter has no required custom modifiers, specify <see langword="null" /> instead of an array of types. If none of the parameters have required custom modifiers, specify <see langword="null" /> instead of an array of arrays.</param>
2430       <returns>A <see cref="T:System.Reflection.Emit.MethodBuilder" /> representing the defined <see langword="PInvoke" /> method.</returns>
2431       <exception cref="T:System.ArgumentException">The method is not static.
2432 -or-
2433 The parent type is an interface.
2434 -or-
2435 The method is abstract.
2436 -or-
2437 The method was previously defined.
2438 -or-
2439 The length of <paramref name="name" />, <paramref name="dllName" />, or <paramref name="entryName" /> is zero.
2440 -or-
2441 The size of <paramref name="parameterTypeRequiredCustomModifiers" /> or <paramref name="parameterTypeOptionalCustomModifiers" /> does not equal the size of <paramref name="parameterTypes" />.</exception>
2442       <exception cref="T:System.ArgumentNullException">
2443         <paramref name="name" />, <paramref name="dllName" />, or <paramref name="entryName" /> is <see langword="null" />.</exception>
2444       <exception cref="T:System.InvalidOperationException">The type was previously created using <see cref="M:System.Reflection.Emit.TypeBuilder.CreateType" />.
2445 -or-
2446 For the current dynamic type, the <see cref="P:System.Reflection.Emit.TypeBuilder.IsGenericType" /> property is <see langword="true" />, but the <see cref="P:System.Reflection.Emit.TypeBuilder.IsGenericTypeDefinition" /> property is <see langword="false" />.</exception>
2447     </member>
2448     <member name="M:System.Reflection.Emit.TypeBuilder.DefineProperty(System.String,System.Reflection.PropertyAttributes,System.Reflection.CallingConventions,System.Type,System.Type[])">
2449       <summary>Adds a new property to the type, with the given name, attributes, calling convention, and property signature.</summary>
2450       <param name="name">The name of the property. <paramref name="name" /> cannot contain embedded nulls.</param>
2451       <param name="attributes">The attributes of the property.</param>
2452       <param name="callingConvention">The calling convention of the property accessors.</param>
2453       <param name="returnType">The return type of the property.</param>
2454       <param name="parameterTypes">The types of the parameters of the property.</param>
2455       <returns>The defined property.</returns>
2456       <exception cref="T:System.ArgumentException">The length of <paramref name="name" /> is zero.</exception>
2457       <exception cref="T:System.ArgumentNullException">
2458         <paramref name="name" /> is <see langword="null" />.
2459 -or-
2460 Any of the elements of the <paramref name="parameterTypes" /> array is <see langword="null" />.</exception>
2461       <exception cref="T:System.InvalidOperationException">The type was previously created using <see cref="M:System.Reflection.Emit.TypeBuilder.CreateType" />.</exception>
2462     </member>
2463     <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[][])">
2464       <summary>Adds a new property to the type, with the given name, calling convention, property signature, and custom modifiers.</summary>
2465       <param name="name">The name of the property. <paramref name="name" /> cannot contain embedded nulls.</param>
2466       <param name="attributes">The attributes of the property.</param>
2467       <param name="callingConvention">The calling convention of the property accessors.</param>
2468       <param name="returnType">The return type of the property.</param>
2469       <param name="returnTypeRequiredCustomModifiers">An array of types representing the required custom modifiers, such as <see cref="T:System.Runtime.CompilerServices.IsConst" />, for the return type of the property. If the return type has no required custom modifiers, specify <see langword="null" />.</param>
2470       <param name="returnTypeOptionalCustomModifiers">An array of types representing the optional custom modifiers, such as <see cref="T:System.Runtime.CompilerServices.IsConst" />, for the return type of the property. If the return type has no optional custom modifiers, specify <see langword="null" />.</param>
2471       <param name="parameterTypes">The types of the parameters of the property.</param>
2472       <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" />. If a particular parameter has no required custom modifiers, specify <see langword="null" /> instead of an array of types. If none of the parameters have required custom modifiers, specify <see langword="null" /> instead of an array of arrays.</param>
2473       <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" />. If a particular parameter has no optional custom modifiers, specify <see langword="null" /> instead of an array of types. If none of the parameters have optional custom modifiers, specify <see langword="null" /> instead of an array of arrays.</param>
2474       <returns>The defined property.</returns>
2475       <exception cref="T:System.ArgumentException">The length of <paramref name="name" /> is zero.</exception>
2476       <exception cref="T:System.ArgumentNullException">
2477         <paramref name="name" /> is <see langword="null" />.
2478 -or-
2479 Any of the elements of the <paramref name="parameterTypes" /> array is <see langword="null" />.</exception>
2480       <exception cref="T:System.InvalidOperationException">The type was previously created using <see cref="M:System.Reflection.Emit.TypeBuilder.CreateType" />.</exception>
2481     </member>
2482     <member name="M:System.Reflection.Emit.TypeBuilder.DefineProperty(System.String,System.Reflection.PropertyAttributes,System.Type,System.Type[])">
2483       <summary>Adds a new property to the type, with the given name and property signature.</summary>
2484       <param name="name">The name of the property. <paramref name="name" /> cannot contain embedded nulls.</param>
2485       <param name="attributes">The attributes of the property.</param>
2486       <param name="returnType">The return type of the property.</param>
2487       <param name="parameterTypes">The types of the parameters of the property.</param>
2488       <returns>The defined property.</returns>
2489       <exception cref="T:System.ArgumentException">The length of <paramref name="name" /> is zero.</exception>
2490       <exception cref="T:System.ArgumentNullException">
2491         <paramref name="name" /> is <see langword="null" />.
2492 -or-
2493 Any of the elements of the <paramref name="parameterTypes" /> array is <see langword="null" />.</exception>
2494       <exception cref="T:System.InvalidOperationException">The type was previously created using <see cref="M:System.Reflection.Emit.TypeBuilder.CreateType" />.</exception>
2495     </member>
2496     <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[][])">
2497       <summary>Adds a new property to the type, with the given name, property signature, and custom modifiers.</summary>
2498       <param name="name">The name of the property. <paramref name="name" /> cannot contain embedded nulls.</param>
2499       <param name="attributes">The attributes of the property.</param>
2500       <param name="returnType">The return type of the property.</param>
2501       <param name="returnTypeRequiredCustomModifiers">An array of types representing the required custom modifiers, such as <see cref="T:System.Runtime.CompilerServices.IsConst" />, for the return type of the property. If the return type has no required custom modifiers, specify <see langword="null" />.</param>
2502       <param name="returnTypeOptionalCustomModifiers">An array of types representing the optional custom modifiers, such as <see cref="T:System.Runtime.CompilerServices.IsConst" />, for the return type of the property. If the return type has no optional custom modifiers, specify <see langword="null" />.</param>
2503       <param name="parameterTypes">The types of the parameters of the property.</param>
2504       <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" />. If a particular parameter has no required custom modifiers, specify <see langword="null" /> instead of an array of types. If none of the parameters have required custom modifiers, specify <see langword="null" /> instead of an array of arrays.</param>
2505       <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" />. If a particular parameter has no optional custom modifiers, specify <see langword="null" /> instead of an array of types. If none of the parameters have optional custom modifiers, specify <see langword="null" /> instead of an array of arrays.</param>
2506       <returns>The defined property.</returns>
2507       <exception cref="T:System.ArgumentException">The length of <paramref name="name" /> is zero.</exception>
2508       <exception cref="T:System.ArgumentNullException">
2509         <paramref name="name" /> is <see langword="null" />
2510 -or-
2511 Any of the elements of the <paramref name="parameterTypes" /> array is <see langword="null" /></exception>
2512       <exception cref="T:System.InvalidOperationException">The type was previously created using <see cref="M:System.Reflection.Emit.TypeBuilder.CreateType" />.</exception>
2513     </member>
2514     <member name="M:System.Reflection.Emit.TypeBuilder.DefineTypeInitializer">
2515       <summary>Defines the initializer for this type.</summary>
2516       <returns>Returns a type initializer.</returns>
2517       <exception cref="T:System.InvalidOperationException">The containing type has been previously created using <see cref="M:System.Reflection.Emit.TypeBuilder.CreateType" />.</exception>
2518     </member>
2519     <member name="M:System.Reflection.Emit.TypeBuilder.DefineUninitializedData(System.String,System.Int32,System.Reflection.FieldAttributes)">
2520       <summary>Defines an uninitialized data field in the <see langword=".sdata" /> section of the portable executable (PE) file.</summary>
2521       <param name="name">The name used to refer to the data. <paramref name="name" /> cannot contain embedded nulls.</param>
2522       <param name="size">The size of the data field.</param>
2523       <param name="attributes">The attributes for the field.</param>
2524       <returns>A field to reference the data.</returns>
2525       <exception cref="T:System.ArgumentException">Length of <paramref name="name" /> is zero.
2526 -or-
2527 <paramref name="size" /> is less than or equal to zero, or greater than or equal to 0x003f0000.</exception>
2528       <exception cref="T:System.ArgumentNullException">
2529         <paramref name="name" /> is <see langword="null" />.</exception>
2530       <exception cref="T:System.InvalidOperationException">The type was previously created using <see cref="M:System.Reflection.Emit.TypeBuilder.CreateType" />.</exception>
2531     </member>
2532     <member name="P:System.Reflection.Emit.TypeBuilder.FullName">
2533       <summary>Retrieves the full path of this type.</summary>
2534       <returns>Read-only. Retrieves the full path of this type.</returns>
2535     </member>
2536     <member name="P:System.Reflection.Emit.TypeBuilder.GenericParameterAttributes">
2537       <summary>Gets a value that indicates the covariance and special constraints of the current generic type parameter.</summary>
2538       <returns>A bitwise combination of <see cref="T:System.Reflection.GenericParameterAttributes" /> values that describes the covariance and special constraints of the current generic type parameter.</returns>
2539     </member>
2540     <member name="P:System.Reflection.Emit.TypeBuilder.GenericParameterPosition">
2541       <summary>Gets the position of a type parameter in the type parameter list of the generic type that declared the parameter.</summary>
2542       <returns>If the current <see cref="T:System.Reflection.Emit.TypeBuilder" /> 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>
2543     </member>
2544     <member name="M:System.Reflection.Emit.TypeBuilder.GetConstructor(System.Type,System.Reflection.ConstructorInfo)">
2545       <summary>Returns the constructor of the specified constructed generic type that corresponds to the specified constructor of the generic type definition.</summary>
2546       <param name="type">The constructed generic type whose constructor is returned.</param>
2547       <param name="constructor">A constructor on the generic type definition of <paramref name="type" />, which specifies which constructor of <paramref name="type" /> to return.</param>
2548       <returns>A <see cref="T:System.Reflection.ConstructorInfo" /> object that represents the constructor of <paramref name="type" /> corresponding to <paramref name="constructor" />, which specifies a constructor belonging to the generic type definition of <paramref name="type" />.</returns>
2549       <exception cref="T:System.ArgumentException">
2550         <paramref name="type" /> does not represent a generic type.
2551 -or-
2552 <paramref name="type" /> is not of type <see cref="T:System.Reflection.Emit.TypeBuilder" />.
2553 -or-
2554 The declaring type of <paramref name="constructor" /> is not a generic type definition.
2555 -or-
2556 The declaring type of <paramref name="constructor" /> is not the generic type definition of <paramref name="type" />.</exception>
2557     </member>
2558     <member name="M:System.Reflection.Emit.TypeBuilder.GetConstructors(System.Reflection.BindingFlags)">
2559       <summary>Returns an array of <see cref="T:System.Reflection.ConstructorInfo" /> objects representing the public and non-public constructors defined for this class, as specified.</summary>
2560       <param name="bindingAttr">This must be a bit flag from <see cref="T:System.Reflection.BindingFlags" /> as in <see langword="InvokeMethod" />, <see langword="NonPublic" />, and so on.</param>
2561       <returns>Returns an array of <see cref="T:System.Reflection.ConstructorInfo" /> objects representing the specified constructors defined for this class. If no constructors are defined, an empty array is returned.</returns>
2562       <exception cref="T:System.NotSupportedException">This method is not implemented for incomplete types.</exception>
2563     </member>
2564     <member name="M:System.Reflection.Emit.TypeBuilder.GetCustomAttributes(System.Boolean)">
2565       <summary>Returns all the custom attributes defined for this type.</summary>
2566       <param name="inherit">Specifies whether to search this member's inheritance chain to find the attributes.</param>
2567       <returns>Returns an array of objects representing all the custom attributes of this type.</returns>
2568       <exception cref="T:System.NotSupportedException">This method is not currently supported for incomplete types. Retrieve the type using <see cref="M:System.Type.GetType" /> and call <see cref="M:System.Reflection.MemberInfo.GetCustomAttributes(System.Boolean)" /> on the returned <see cref="T:System.Type" />.</exception>
2569     </member>
2570     <member name="M:System.Reflection.Emit.TypeBuilder.GetCustomAttributes(System.Type,System.Boolean)">
2571       <summary>Returns all the custom attributes of the current type that are assignable to a specified type.</summary>
2572       <param name="attributeType">The type of attribute to search for. Only attributes that are assignable to this type are returned.</param>
2573       <param name="inherit">Specifies whether to search this member's inheritance chain to find the attributes.</param>
2574       <returns>An array of custom attributes defined on the current type.</returns>
2575       <exception cref="T:System.NotSupportedException">This method is not currently supported for incomplete types. Retrieve the type using <see cref="M:System.Type.GetType" /> and call <see cref="M:System.Reflection.MemberInfo.GetCustomAttributes(System.Boolean)" /> on the returned <see cref="T:System.Type" />.</exception>
2576       <exception cref="T:System.ArgumentNullException">
2577         <paramref name="attributeType" /> is <see langword="null" />.</exception>
2578       <exception cref="T:System.ArgumentException">The type must be a type provided by the underlying runtime system.</exception>
2579     </member>
2580     <member name="M:System.Reflection.Emit.TypeBuilder.GetElementType">
2581       <summary>Calling this method always throws <see cref="T:System.NotSupportedException" />.</summary>
2582       <returns>This method is not supported. No value is returned.</returns>
2583       <exception cref="T:System.NotSupportedException">This method is not supported.</exception>
2584     </member>
2585     <member name="M:System.Reflection.Emit.TypeBuilder.GetEvent(System.String,System.Reflection.BindingFlags)">
2586       <summary>Returns the event with the specified name.</summary>
2587       <param name="name">The name of the event to search for.</param>
2588       <param name="bindingAttr">A bitwise combination of <see cref="T:System.Reflection.BindingFlags" /> values that limits the search.</param>
2589       <returns>An <see cref="T:System.Reflection.EventInfo" /> object representing the event declared or inherited by this type with the specified name, or <see langword="null" /> if there are no matches.</returns>
2590       <exception cref="T:System.NotSupportedException">This method is not implemented for incomplete types.</exception>
2591     </member>
2592     <member name="M:System.Reflection.Emit.TypeBuilder.GetEvents">
2593       <summary>Returns the public events declared or inherited by this type.</summary>
2594       <returns>Returns an array of <see cref="T:System.Reflection.EventInfo" /> objects representing the public events declared or inherited by this type. An empty array is returned if there are no public events.</returns>
2595       <exception cref="T:System.NotSupportedException">This method is not implemented for incomplete types.</exception>
2596     </member>
2597     <member name="M:System.Reflection.Emit.TypeBuilder.GetEvents(System.Reflection.BindingFlags)">
2598       <summary>Returns the public and non-public events that are declared by this type.</summary>
2599       <param name="bindingAttr">A bitwise combination of <see cref="T:System.Reflection.BindingFlags" /> values that limits the search.</param>
2600       <returns>Returns an array of <see cref="T:System.Reflection.EventInfo" /> 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>
2601       <exception cref="T:System.NotSupportedException">This method is not implemented for incomplete types.</exception>
2602     </member>
2603     <member name="M:System.Reflection.Emit.TypeBuilder.GetField(System.String,System.Reflection.BindingFlags)">
2604       <summary>Returns the field specified by the given name.</summary>
2605       <param name="name">The name of the field to get.</param>
2606       <param name="bindingAttr">This must be a bit flag from <see cref="T:System.Reflection.BindingFlags" /> as in <see langword="InvokeMethod" />, <see langword="NonPublic" />, and so on.</param>
2607       <returns>Returns the <see cref="T:System.Reflection.FieldInfo" /> 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 <see langword="null" /> is returned.</returns>
2608       <exception cref="T:System.NotSupportedException">This method is not implemented for incomplete types.</exception>
2609     </member>
2610     <member name="M:System.Reflection.Emit.TypeBuilder.GetField(System.Type,System.Reflection.FieldInfo)">
2611       <summary>Returns the field of the specified constructed generic type that corresponds to the specified field of the generic type definition.</summary>
2612       <param name="type">The constructed generic type whose field is returned.</param>
2613       <param name="field">A field on the generic type definition of <paramref name="type" />, which specifies which field of <paramref name="type" /> to return.</param>
2614       <returns>A <see cref="T:System.Reflection.FieldInfo" /> object that represents the field of <paramref name="type" /> corresponding to <paramref name="field" />, which specifies a field belonging to the generic type definition of <paramref name="type" />.</returns>
2615       <exception cref="T:System.ArgumentException">
2616         <paramref name="type" /> does not represent a generic type.
2617 -or-
2618 <paramref name="type" /> is not of type <see cref="T:System.Reflection.Emit.TypeBuilder" />.
2619 -or-
2620 The declaring type of <paramref name="field" /> is not a generic type definition.
2621 -or-
2622 The declaring type of <paramref name="field" /> is not the generic type definition of <paramref name="type" />.</exception>
2623     </member>
2624     <member name="M:System.Reflection.Emit.TypeBuilder.GetFields(System.Reflection.BindingFlags)">
2625       <summary>Returns the public and non-public fields that are declared by this type.</summary>
2626       <param name="bindingAttr">This must be a bit flag from <see cref="T:System.Reflection.BindingFlags" /> : <see langword="InvokeMethod" />, <see langword="NonPublic" />, and so on.</param>
2627       <returns>Returns an array of <see cref="T:System.Reflection.FieldInfo" /> 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>
2628       <exception cref="T:System.NotSupportedException">This method is not implemented for incomplete types.</exception>
2629     </member>
2630     <member name="M:System.Reflection.Emit.TypeBuilder.GetGenericArguments">
2631       <summary>Returns an array of <see cref="T:System.Type" /> objects representing the type arguments of a generic type or the type parameters of a generic type definition.</summary>
2632       <returns>An array of <see cref="T:System.Type" /> objects. The elements of the array represent the type arguments of a generic type or the type parameters of a generic type definition.</returns>
2633     </member>
2634     <member name="M:System.Reflection.Emit.TypeBuilder.GetGenericTypeDefinition">
2635       <summary>Returns a <see cref="T:System.Type" /> object that represents a generic type definition from which the current type can be obtained.</summary>
2636       <returns>A <see cref="T:System.Type" /> object representing a generic type definition from which the current type can be obtained.</returns>
2637       <exception cref="T:System.InvalidOperationException">The current type is not generic. That is, <see cref="P:System.Reflection.Emit.TypeBuilder.IsGenericType" /> returns <see langword="false" />.</exception>
2638     </member>
2639     <member name="M:System.Reflection.Emit.TypeBuilder.GetInterface(System.String,System.Boolean)">
2640       <summary>Returns the interface implemented (directly or indirectly) by this class with the fully qualified name matching the given interface name.</summary>
2641       <param name="name">The name of the interface.</param>
2642       <param name="ignoreCase">If <see langword="true" />, the search is case-insensitive. If <see langword="false" />, the search is case-sensitive.</param>
2643       <returns>Returns a <see cref="T:System.Type" /> object representing the implemented interface. Returns null if no interface matching name is found.</returns>
2644       <exception cref="T:System.NotSupportedException">This method is not implemented for incomplete types.</exception>
2645     </member>
2646     <member name="M:System.Reflection.Emit.TypeBuilder.GetInterfaceMap(System.Type)">
2647       <summary>Returns an interface mapping for the requested interface.</summary>
2648       <param name="interfaceType">The <see cref="T:System.Type" /> of the interface for which the mapping is to be retrieved.</param>
2649       <returns>Returns the requested interface mapping.</returns>
2650       <exception cref="T:System.NotSupportedException">This method is not implemented for incomplete types.</exception>
2651     </member>
2652     <member name="M:System.Reflection.Emit.TypeBuilder.GetInterfaces">
2653       <summary>Returns an array of all the interfaces implemented on this type and its base types.</summary>
2654       <returns>Returns an array of <see cref="T:System.Type" /> objects representing the implemented interfaces. If none are defined, an empty array is returned.</returns>
2655     </member>
2656     <member name="M:System.Reflection.Emit.TypeBuilder.GetMember(System.String,System.Reflection.MemberTypes,System.Reflection.BindingFlags)">
2657       <summary>Returns all the public and non-public members declared or inherited by this type, as specified.</summary>
2658       <param name="name">The name of the member.</param>
2659       <param name="type">The type of the member to return.</param>
2660       <param name="bindingAttr">This must be a bit flag from <see cref="T:System.Reflection.BindingFlags" />, as in <see langword="InvokeMethod" />, <see langword="NonPublic" />, and so on.</param>
2661       <returns>Returns an array of <see cref="T:System.Reflection.MemberInfo" /> objects representing the public and non-public members defined on this type if <paramref name="nonPublic" /> is used; otherwise, only the public members are returned.</returns>
2662       <exception cref="T:System.NotSupportedException">This method is not implemented for incomplete types.</exception>
2663     </member>
2664     <member name="M:System.Reflection.Emit.TypeBuilder.GetMembers(System.Reflection.BindingFlags)">
2665       <summary>Returns the members for the public and non-public members declared or inherited by this type.</summary>
2666       <param name="bindingAttr">This must be a bit flag from <see cref="T:System.Reflection.BindingFlags" />, such as <see langword="InvokeMethod" />, <see langword="NonPublic" />, and so on.</param>
2667       <returns>Returns an array of <see cref="T:System.Reflection.MemberInfo" /> 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>
2668       <exception cref="T:System.NotSupportedException">This method is not implemented for incomplete types.</exception>
2669     </member>
2670     <member name="M:System.Reflection.Emit.TypeBuilder.GetMethod(System.Type,System.Reflection.MethodInfo)">
2671       <summary>Returns the method of the specified constructed generic type that corresponds to the specified method of the generic type definition.</summary>
2672       <param name="type">The constructed generic type whose method is returned.</param>
2673       <param name="method">A method on the generic type definition of <paramref name="type" />, which specifies which method of <paramref name="type" /> to return.</param>
2674       <returns>A <see cref="T:System.Reflection.MethodInfo" /> object that represents the method of <paramref name="type" /> corresponding to <paramref name="method" />, which specifies a method belonging to the generic type definition of <paramref name="type" />.</returns>
2675       <exception cref="T:System.ArgumentException">
2676         <paramref name="method" /> is a generic method that is not a generic method definition.
2677 -or-
2678 <paramref name="type" /> does not represent a generic type.
2679 -or-
2680 <paramref name="type" /> is not of type <see cref="T:System.Reflection.Emit.TypeBuilder" />.
2681 -or-
2682 The declaring type of <paramref name="method" /> is not a generic type definition.
2683 -or-
2684 The declaring type of <paramref name="method" /> is not the generic type definition of <paramref name="type" />.</exception>
2685     </member>
2686     <member name="M:System.Reflection.Emit.TypeBuilder.GetMethods(System.Reflection.BindingFlags)">
2687       <summary>Returns all the public and non-public methods declared or inherited by this type, as specified.</summary>
2688       <param name="bindingAttr">This must be a bit flag from <see cref="T:System.Reflection.BindingFlags" /> as in <see langword="InvokeMethod" />, <see langword="NonPublic" />, and so on.</param>
2689       <returns>Returns an array of <see cref="T:System.Reflection.MethodInfo" /> objects representing the public and non-public methods defined on this type if <paramref name="nonPublic" /> is used; otherwise, only the public methods are returned.</returns>
2690       <exception cref="T:System.NotSupportedException">This method is not implemented for incomplete types.</exception>
2691     </member>
2692     <member name="M:System.Reflection.Emit.TypeBuilder.GetNestedType(System.String,System.Reflection.BindingFlags)">
2693       <summary>Returns the public and non-public nested types that are declared by this type.</summary>
2694       <param name="name">The <see cref="T:System.String" /> containing the name of the nested type to get.</param>
2695       <param name="bindingAttr">A bitmask comprised of one or more <see cref="T:System.Reflection.BindingFlags" /> that specify how the search is conducted.
2696 -or-
2697 Zero, to conduct a case-sensitive search for public methods.</param>
2698       <returns>A <see cref="T:System.Type" /> object representing the nested type that matches the specified requirements, if found; otherwise, <see langword="null" />.</returns>
2699       <exception cref="T:System.NotSupportedException">This method is not implemented for incomplete types.</exception>
2700     </member>
2701     <member name="M:System.Reflection.Emit.TypeBuilder.GetNestedTypes(System.Reflection.BindingFlags)">
2702       <summary>Returns the public and non-public nested types that are declared or inherited by this type.</summary>
2703       <param name="bindingAttr">This must be a bit flag from <see cref="T:System.Reflection.BindingFlags" />, as in <see langword="InvokeMethod" />, <see langword="NonPublic" />, and so on.</param>
2704       <returns>An array of <see cref="T:System.Type" /> objects representing all the types nested within the current <see cref="T:System.Type" /> that match the specified binding constraints.
2705 An empty array of type <see cref="T:System.Type" />, if no types are nested within the current <see cref="T:System.Type" />, or if none of the nested types match the binding constraints.</returns>
2706       <exception cref="T:System.NotSupportedException">This method is not implemented for incomplete types.</exception>
2707     </member>
2708     <member name="M:System.Reflection.Emit.TypeBuilder.GetProperties(System.Reflection.BindingFlags)">
2709       <summary>Returns all the public and non-public properties declared or inherited by this type, as specified.</summary>
2710       <param name="bindingAttr">This invocation attribute. This must be a bit flag from <see cref="T:System.Reflection.BindingFlags" /> : <see langword="InvokeMethod" />, <see langword="NonPublic" />, and so on.</param>
2711       <returns>Returns an array of <see langword="PropertyInfo" /> objects representing the public and non-public properties defined on this type if <paramref name="nonPublic" /> is used; otherwise, only the public properties are returned.</returns>
2712       <exception cref="T:System.NotSupportedException">This method is not implemented for incomplete types.</exception>
2713     </member>
2714     <member name="P:System.Reflection.Emit.TypeBuilder.GUID">
2715       <summary>Retrieves the GUID of this type.</summary>
2716       <returns>Read-only. Retrieves the GUID of this type</returns>
2717       <exception cref="T:System.NotSupportedException">This method is not currently supported for incomplete types.</exception>
2718     </member>
2719     <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[])">
2720       <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>
2721       <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>
2722       <param name="invokeAttr">The invocation attribute. This must be a bit flag from <see langword="BindingFlags" />.</param>
2723       <param name="binder">An object that enables the binding, coercion of argument types, invocation of members, and retrieval of <see langword="MemberInfo" /> objects using reflection. If binder is <see langword="null" />, the default binder is used. See <see cref="T:System.Reflection.Binder" />.</param>
2724       <param name="target">The object on which to invoke the specified member. If the member is static, this parameter is ignored.</param>
2725       <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>
2726       <param name="modifiers">An array of the same length as <paramref name="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>
2727       <param name="culture">An instance of <see langword="CultureInfo" /> used to govern the coercion of types. If this is null, the <see langword="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>
2728       <param name="namedParameters">Each parameter in the <paramref name="namedParameters" /> array gets the value in the corresponding element in the <paramref name="args" /> array. If the length of <paramref name="args" /> is greater than the length of <paramref name="namedParameters" />, the remaining argument values are passed in order.</param>
2729       <returns>Returns the return value of the invoked member.</returns>
2730       <exception cref="T:System.NotSupportedException">This method is not currently supported for incomplete types.</exception>
2731     </member>
2732     <member name="M:System.Reflection.Emit.TypeBuilder.IsAssignableFrom(System.Type)">
2733       <summary>Gets a value that indicates whether a specified <see cref="T:System.Type" /> can be assigned to this object.</summary>
2734       <param name="c">The object to test.</param>
2735       <returns>
2736         <see langword="true" /> if the <paramref name="c" /> parameter and the current type represent the same type, or if the current type is in the inheritance hierarchy of <paramref name="c" />, or if the current type is an interface that <paramref name="c" /> supports. <see langword="false" /> if none of these conditions are valid, or if <paramref name="c" /> is <see langword="null" />.</returns>
2737     </member>
2738     <member name="P:System.Reflection.Emit.TypeBuilder.IsByRefLike" />
2739     <member name="P:System.Reflection.Emit.TypeBuilder.IsConstructedGenericType">
2740       <summary>Gets a value that indicates whether this object represents a constructed generic type.</summary>
2741       <returns>
2742         <see langword="true" /> if this object represents a constructed generic type; otherwise, <see langword="false" />.</returns>
2743     </member>
2744     <member name="M:System.Reflection.Emit.TypeBuilder.IsCreated">
2745       <summary>Returns a value that indicates whether the current dynamic type has been created.</summary>
2746       <returns>
2747         <see langword="true" /> if the <see cref="M:System.Reflection.Emit.TypeBuilder.CreateType" /> method has been called; otherwise, <see langword="false" />.</returns>
2748     </member>
2749     <member name="M:System.Reflection.Emit.TypeBuilder.IsDefined(System.Type,System.Boolean)">
2750       <summary>Determines whether a custom attribute is applied to the current type.</summary>
2751       <param name="attributeType">The type of attribute to search for. Only attributes that are assignable to this type are returned.</param>
2752       <param name="inherit">Specifies whether to search this member's inheritance chain to find the attributes.</param>
2753       <returns>
2754         <see langword="true" /> if one or more instances of <paramref name="attributeType" />, or an attribute derived from <paramref name="attributeType" />, is defined on this type; otherwise, <see langword="false" />.</returns>
2755       <exception cref="T:System.NotSupportedException">This method is not currently supported for incomplete types. Retrieve the type using <see cref="M:System.Type.GetType" /> and call <see cref="M:System.Reflection.MemberInfo.IsDefined(System.Type,System.Boolean)" /> on the returned <see cref="T:System.Type" />.</exception>
2756       <exception cref="T:System.ArgumentException">
2757         <paramref name="attributeType" /> is not defined.</exception>
2758       <exception cref="T:System.ArgumentNullException">
2759         <paramref name="attributeType" /> is <see langword="null" />.</exception>
2760     </member>
2761     <member name="P:System.Reflection.Emit.TypeBuilder.IsGenericParameter">
2762       <summary>Gets a value indicating whether the current type is a generic type parameter.</summary>
2763       <returns>
2764         <see langword="true" /> if the current <see cref="T:System.Reflection.Emit.TypeBuilder" /> object represents a generic type parameter; otherwise, <see langword="false" />.</returns>
2765     </member>
2766     <member name="P:System.Reflection.Emit.TypeBuilder.IsGenericType">
2767       <summary>Gets a value indicating whether the current type is a generic type.</summary>
2768       <returns>
2769         <see langword="true" /> if the type represented by the current <see cref="T:System.Reflection.Emit.TypeBuilder" /> object is generic; otherwise, <see langword="false" />.</returns>
2770     </member>
2771     <member name="P:System.Reflection.Emit.TypeBuilder.IsGenericTypeDefinition">
2772       <summary>Gets a value indicating whether the current <see cref="T:System.Reflection.Emit.TypeBuilder" /> represents a generic type definition from which other generic types can be constructed.</summary>
2773       <returns>
2774         <see langword="true" /> if this <see cref="T:System.Reflection.Emit.TypeBuilder" /> object represents a generic type definition; otherwise, <see langword="false" />.</returns>
2775     </member>
2776     <member name="P:System.Reflection.Emit.TypeBuilder.IsSecurityCritical">
2777       <summary>Gets a value that indicates whether the current type is security-critical or security-safe-critical, and therefore can perform critical operations.</summary>
2778       <returns>
2779         <see langword="true" /> if the current type is security-critical or security-safe-critical; <see langword="false" /> if it is transparent.</returns>
2780       <exception cref="T:System.NotSupportedException">The current dynamic type has not been created by calling the <see cref="M:System.Reflection.Emit.TypeBuilder.CreateType" /> method.</exception>
2781     </member>
2782     <member name="P:System.Reflection.Emit.TypeBuilder.IsSecuritySafeCritical">
2783       <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>
2784       <returns>
2785         <see langword="true" /> if the current type is security-safe-critical; <see langword="false" /> if it is security-critical or transparent.</returns>
2786       <exception cref="T:System.NotSupportedException">The current dynamic type has not been created by calling the <see cref="M:System.Reflection.Emit.TypeBuilder.CreateType" /> method.</exception>
2787     </member>
2788     <member name="P:System.Reflection.Emit.TypeBuilder.IsSecurityTransparent">
2789       <summary>Gets a value that indicates whether the current type is transparent, and therefore cannot perform critical operations.</summary>
2790       <returns>
2791         <see langword="true" /> if the type is security-transparent; otherwise, <see langword="false" />.</returns>
2792       <exception cref="T:System.NotSupportedException">The current dynamic type has not been created by calling the <see cref="M:System.Reflection.Emit.TypeBuilder.CreateType" /> method.</exception>
2793     </member>
2794     <member name="M:System.Reflection.Emit.TypeBuilder.IsSubclassOf(System.Type)">
2795       <summary>Determines whether this type is derived from a specified type.</summary>
2796       <param name="c">A <see cref="T:System.Type" /> that is to be checked.</param>
2797       <returns>Read-only. Returns <see langword="true" /> if this type is the same as the type <paramref name="c" />, or is a subtype of type <paramref name="c" />; otherwise, <see langword="false" />.</returns>
2798     </member>
2799     <member name="P:System.Reflection.Emit.TypeBuilder.IsSZArray" />
2800     <member name="P:System.Reflection.Emit.TypeBuilder.IsTypeDefinition" />
2801     <member name="P:System.Reflection.Emit.TypeBuilder.IsVariableBoundArray" />
2802     <member name="M:System.Reflection.Emit.TypeBuilder.MakeArrayType">
2803       <summary>Returns a <see cref="T:System.Type" /> object that represents a one-dimensional array of the current type, with a lower bound of zero.</summary>
2804       <returns>A <see cref="T:System.Type" /> object representing a one-dimensional array type whose element type is the current type, with a lower bound of zero.</returns>
2805     </member>
2806     <member name="M:System.Reflection.Emit.TypeBuilder.MakeArrayType(System.Int32)">
2807       <summary>Returns a <see cref="T:System.Type" /> object that represents an array of the current type, with the specified number of dimensions.</summary>
2808       <param name="rank">The number of dimensions for the array.</param>
2809       <returns>A <see cref="T:System.Type" /> object that represents a one-dimensional array of the current type.</returns>
2810       <exception cref="T:System.IndexOutOfRangeException">
2811         <paramref name="rank" /> is not a valid array dimension.</exception>
2812     </member>
2813     <member name="M:System.Reflection.Emit.TypeBuilder.MakeByRefType">
2814       <summary>Returns a <see cref="T:System.Type" /> object that represents the current type when passed as a <see langword="ref" /> parameter (<see langword="ByRef" /> in Visual Basic).</summary>
2815       <returns>A <see cref="T:System.Type" /> object that represents the current type when passed as a <see langword="ref" /> parameter (<see langword="ByRef" /> in Visual Basic).</returns>
2816     </member>
2817     <member name="M:System.Reflection.Emit.TypeBuilder.MakeGenericType(System.Type[])">
2818       <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>
2819       <param name="typeArguments">An array of types to be substituted for the type parameters of the current generic type definition.</param>
2820       <returns>A <see cref="T:System.Type" /> representing the constructed type formed by substituting the elements of <paramref name="typeArguments" /> for the type parameters of the current generic type.</returns>
2821       <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" /> returns <see langword="false" />.</exception>
2822       <exception cref="T:System.ArgumentNullException">
2823         <paramref name="typeArguments" /> is <see langword="null" />.
2824 -or-
2825 Any element of <paramref name="typeArguments" /> is <see langword="null" />.</exception>
2826       <exception cref="T:System.ArgumentException">The <see cref="P:System.Type.Module" /> property of any element of <paramref name="typeArguments" /> is <see langword="null" />.
2827 -or-
2828 The <see cref="P:System.Reflection.Module.Assembly" /> property of the module of any element of <paramref name="typeArguments" /> is <see langword="null" />.</exception>
2829     </member>
2830     <member name="M:System.Reflection.Emit.TypeBuilder.MakePointerType">
2831       <summary>Returns a <see cref="T:System.Type" /> object that represents the type of an unmanaged pointer to the current type.</summary>
2832       <returns>A <see cref="T:System.Type" /> object that represents the type of an unmanaged pointer to the current type.</returns>
2833     </member>
2834     <member name="P:System.Reflection.Emit.TypeBuilder.Module">
2835       <summary>Retrieves the dynamic module that contains this type definition.</summary>
2836       <returns>Read-only. Retrieves the dynamic module that contains this type definition.</returns>
2837     </member>
2838     <member name="P:System.Reflection.Emit.TypeBuilder.Name">
2839       <summary>Retrieves the name of this type.</summary>
2840       <returns>Read-only. Retrieves the <see cref="T:System.String" /> name of this type.</returns>
2841     </member>
2842     <member name="P:System.Reflection.Emit.TypeBuilder.Namespace">
2843       <summary>Retrieves the namespace where this <see langword="TypeBuilder" /> is defined.</summary>
2844       <returns>Read-only. Retrieves the namespace where this <see langword="TypeBuilder" /> is defined.</returns>
2845     </member>
2846     <member name="P:System.Reflection.Emit.TypeBuilder.PackingSize">
2847       <summary>Retrieves the packing size of this type.</summary>
2848       <returns>Read-only. Retrieves the packing size of this type.</returns>
2849     </member>
2850     <member name="P:System.Reflection.Emit.TypeBuilder.ReflectedType">
2851       <summary>Returns the type that was used to obtain this type.</summary>
2852       <returns>Read-only. The type that was used to obtain this type.</returns>
2853     </member>
2854     <member name="M:System.Reflection.Emit.TypeBuilder.SetCustomAttribute(System.Reflection.ConstructorInfo,System.Byte[])">
2855       <summary>Sets a custom attribute using a specified custom attribute blob.</summary>
2856       <param name="con">The constructor for the custom attribute.</param>
2857       <param name="binaryAttribute">A byte blob representing the attributes.</param>
2858       <exception cref="T:System.ArgumentNullException">
2859         <paramref name="con" /> or <paramref name="binaryAttribute" /> is <see langword="null" />.</exception>
2860       <exception cref="T:System.InvalidOperationException">For the current dynamic type, the <see cref="P:System.Reflection.Emit.TypeBuilder.IsGenericType" /> property is <see langword="true" />, but the <see cref="P:System.Reflection.Emit.TypeBuilder.IsGenericTypeDefinition" /> property is <see langword="false" />.</exception>
2861     </member>
2862     <member name="M:System.Reflection.Emit.TypeBuilder.SetCustomAttribute(System.Reflection.Emit.CustomAttributeBuilder)">
2863       <summary>Set a custom attribute using a custom attribute builder.</summary>
2864       <param name="customBuilder">An instance of a helper class to define the custom attribute.</param>
2865       <exception cref="T:System.ArgumentNullException">
2866         <paramref name="customBuilder" /> is <see langword="null" />.</exception>
2867       <exception cref="T:System.InvalidOperationException">For the current dynamic type, the <see cref="P:System.Reflection.Emit.TypeBuilder.IsGenericType" /> property is <see langword="true" />, but the <see cref="P:System.Reflection.Emit.TypeBuilder.IsGenericTypeDefinition" /> property is <see langword="false" />.</exception>
2868     </member>
2869     <member name="M:System.Reflection.Emit.TypeBuilder.SetParent(System.Type)">
2870       <summary>Sets the base type of the type currently under construction.</summary>
2871       <param name="parent">The new base type.</param>
2872       <exception cref="T:System.InvalidOperationException">The type was previously created using <see cref="M:System.Reflection.Emit.TypeBuilder.CreateType" />.
2873 -or-
2874 <paramref name="parent" /> is <see langword="null" />, and the current instance represents an interface whose attributes do not include <see cref="F:System.Reflection.TypeAttributes.Abstract" />.
2875 -or-
2876 For the current dynamic type, the <see cref="P:System.Reflection.Emit.TypeBuilder.IsGenericType" /> property is <see langword="true" />, but the <see cref="P:System.Reflection.Emit.TypeBuilder.IsGenericTypeDefinition" /> property is <see langword="false" />.</exception>
2877       <exception cref="T:System.ArgumentException">
2878         <paramref name="parent" /> is an interface. This exception condition is new in the .NET Framework version 2.0.</exception>
2879     </member>
2880     <member name="P:System.Reflection.Emit.TypeBuilder.Size">
2881       <summary>Retrieves the total size of a type.</summary>
2882       <returns>Read-only. Retrieves this type's total size.</returns>
2883     </member>
2884     <member name="M:System.Reflection.Emit.TypeBuilder.ToString">
2885       <summary>Returns the name of the type excluding the namespace.</summary>
2886       <returns>Read-only. The name of the type excluding the namespace.</returns>
2887     </member>
2888     <member name="P:System.Reflection.Emit.TypeBuilder.TypeHandle">
2889       <summary>Not supported in dynamic modules.</summary>
2890       <returns>Read-only.</returns>
2891       <exception cref="T:System.NotSupportedException">Not supported in dynamic modules.</exception>
2892     </member>
2893     <member name="P:System.Reflection.Emit.TypeBuilder.UnderlyingSystemType">
2894       <summary>Returns the underlying system type for this <see langword="TypeBuilder" />.</summary>
2895       <returns>Read-only. Returns the underlying system type.</returns>
2896       <exception cref="T:System.InvalidOperationException">This type is an enumeration, but there is no underlying system type.</exception>
2897     </member>
2898     <member name="F:System.Reflection.Emit.TypeBuilder.UnspecifiedTypeSize">
2899       <summary>Represents that total size for the type is not specified.</summary>
2900     </member>
2901   </members>
2902 </doc>