summaryrefslogtreecommitdiff
path: root/.packages/microsoft.netcore.app/2.0.0/ref/netcoreapp2.0/System.Reflection.Emit.ILGeneration.xml
blob: db685095d93b8f863b6e1e10e0bfdde269f0fec5 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
<?xml version="1.0" encoding="utf-8"?><span>
<doc>
  <assembly>
    <name>System.Reflection.Emit.ILGeneration</name>
  </assembly>
  <members>
    <member name="T:System.Reflection.Emit.CustomAttributeBuilder">
      <summary>Helps build custom attributes.</summary>
    </member>
    <member name="M:System.Reflection.Emit.CustomAttributeBuilder.#ctor(System.Reflection.ConstructorInfo,System.Object[])">
      <summary>Initializes an instance of the CustomAttributeBuilder class given the constructor for the custom attribute and the arguments to the constructor.</summary>
      <param name="con">The constructor for the custom attribute.</param>
      <param name="constructorArgs">The arguments to the constructor of the custom attribute.</param>
      <exception cref="T:System.ArgumentException"><paramref name="con">con</paramref> is static or private.   -or-   The number of supplied arguments does not match the number of parameters of the constructor as required by the calling convention of the constructor.   -or-   The type of supplied argument does not match the type of the parameter declared in the constructor.   -or-   A supplied argument is a reference type other than <see cref="T:System.String"></see> or <see cref="T:System.Type"></see>.</exception>
      <exception cref="T:System.ArgumentNullException"><paramref name="con">con</paramref> or <paramref name="constructorArgs">constructorArgs</paramref> is null.</exception>
    </member>
    <member name="M:System.Reflection.Emit.CustomAttributeBuilder.#ctor(System.Reflection.ConstructorInfo,System.Object[],System.Reflection.FieldInfo[],System.Object[])">
      <summary>Initializes an instance of the CustomAttributeBuilder class given the constructor for the custom attribute, the arguments to the constructor, and a set of named field/value pairs.</summary>
      <param name="con">The constructor for the custom attribute.</param>
      <param name="constructorArgs">The arguments to the constructor of the custom attribute.</param>
      <param name="namedFields">Named fields of the custom attribute.</param>
      <param name="fieldValues">Values for the named fields of the custom attribute.</param>
      <exception cref="T:System.ArgumentException">The lengths of the <paramref name="namedFields">namedFields</paramref> and <paramref name="fieldValues">fieldValues</paramref> arrays are different.   -or-  <paramref name="con">con</paramref> is static or private.   -or-   The number of supplied arguments does not match the number of parameters of the constructor as required by the calling convention of the constructor.   -or-   The type of supplied argument does not match the type of the parameter declared in the constructor.   -or-   The types of the field values do not match the types of the named fields.   -or-   The field does not belong to the same class or base class as the constructor.   -or-   A supplied argument or named field is a reference type other than <see cref="T:System.String"></see> or <see cref="T:System.Type"></see>.</exception>
      <exception cref="T:System.ArgumentNullException">One of the parameters is null.</exception>
    </member>
    <member name="M:System.Reflection.Emit.CustomAttributeBuilder.#ctor(System.Reflection.ConstructorInfo,System.Object[],System.Reflection.PropertyInfo[],System.Object[])">
      <summary>Initializes an instance of the CustomAttributeBuilder class given the constructor for the custom attribute, the arguments to the constructor, and a set of named property or value pairs.</summary>
      <param name="con">The constructor for the custom attribute.</param>
      <param name="constructorArgs">The arguments to the constructor of the custom attribute.</param>
      <param name="namedProperties">Named properties of the custom attribute.</param>
      <param name="propertyValues">Values for the named properties of the custom attribute.</param>
      <exception cref="T:System.ArgumentException">The lengths of the <paramref name="namedProperties">namedProperties</paramref> and <paramref name="propertyValues">propertyValues</paramref> arrays are different.   -or-  <paramref name="con">con</paramref> is static or private.   -or-   The number of supplied arguments does not match the number of parameters of the constructor as required by the calling convention of the constructor.   -or-   The type of supplied argument does not match the type of the parameter declared in the constructor.   -or-   The types of the property values do not match the types of the named properties.   -or-   A property has no setter method.   -or-   The property does not belong to the same class or base class as the constructor.   -or-   A supplied argument or named property is a reference type other than <see cref="T:System.String"></see> or <see cref="T:System.Type"></see>.</exception>
      <exception cref="T:System.ArgumentNullException">One of the parameters is null.</exception>
    </member>
    <member name="M:System.Reflection.Emit.CustomAttributeBuilder.#ctor(System.Reflection.ConstructorInfo,System.Object[],System.Reflection.PropertyInfo[],System.Object[],System.Reflection.FieldInfo[],System.Object[])">
      <summary>Initializes an instance of the CustomAttributeBuilder class given the constructor for the custom attribute, the arguments to the constructor, a set of named property or value pairs, and a set of named field or value pairs.</summary>
      <param name="con">The constructor for the custom attribute.</param>
      <param name="constructorArgs">The arguments to the constructor of the custom attribute.</param>
      <param name="namedProperties">Named properties of the custom attribute.</param>
      <param name="propertyValues">Values for the named properties of the custom attribute.</param>
      <param name="namedFields">Named fields of the custom attribute.</param>
      <param name="fieldValues">Values for the named fields of the custom attribute.</param>
      <exception cref="T:System.ArgumentException">The lengths of the <paramref name="namedProperties">namedProperties</paramref> and <paramref name="propertyValues">propertyValues</paramref> arrays are different.   -or-   The lengths of the <paramref name="namedFields">namedFields</paramref> and <paramref name="fieldValues">fieldValues</paramref> arrays are different.   -or-  <paramref name="con">con</paramref> is static or private.   -or-   The number of supplied arguments does not match the number of parameters of the constructor as required by the calling convention of the constructor.   -or-   The type of supplied argument does not match the type of the parameter declared in the constructor.   -or-   The types of the property values do not match the types of the named properties.   -or-   The types of the field values do not match the types of the corresponding field types.   -or-   A property has no setter.   -or-   The property or field does not belong to the same class or base class as the constructor.   -or-   A supplied argument, named property, or named field is a reference type other than <see cref="T:System.String"></see> or <see cref="T:System.Type"></see>.</exception>
      <exception cref="T:System.ArgumentNullException">One of the parameters is null.</exception>
    </member>
    <member name="T:System.Reflection.Emit.ILGenerator">
      <summary>Generates Microsoft intermediate language (MSIL) instructions.</summary>
    </member>
    <member name="M:System.Reflection.Emit.ILGenerator.BeginCatchBlock(System.Type)">
      <summary>Begins a catch block.</summary>
      <param name="exceptionType">The <see cref="T:System.Type"></see> object that represents the exception.</param>
      <exception cref="T:System.ArgumentException">The catch block is within a filtered exception.</exception>
      <exception cref="T:System.ArgumentNullException"><paramref name="exceptionType">exceptionType</paramref> is null, and the exception filter block has not returned a value that indicates that finally blocks should be run until this catch block is located.</exception>
      <exception cref="T:System.NotSupportedException">The Microsoft intermediate language (MSIL) being generated is not currently in an exception block.</exception>
    </member>
    <member name="M:System.Reflection.Emit.ILGenerator.BeginExceptFilterBlock">
      <summary>Begins an exception block for a filtered exception.</summary>
      <exception cref="T:System.NotSupportedException">The Microsoft intermediate language (MSIL) being generated is not currently in an exception block.   -or-   This <see cref="T:System.Reflection.Emit.ILGenerator"></see> belongs to a <see cref="T:System.Reflection.Emit.DynamicMethod"></see>.</exception>
    </member>
    <member name="M:System.Reflection.Emit.ILGenerator.BeginExceptionBlock">
      <summary>Begins an exception block for a non-filtered exception.</summary>
      <returns>The label for the end of the block. This will leave you in the correct place to execute finally blocks or to finish the try.</returns>
    </member>
    <member name="M:System.Reflection.Emit.ILGenerator.BeginFaultBlock">
      <summary>Begins an exception fault block in the Microsoft intermediate language (MSIL) stream.</summary>
      <exception cref="T:System.NotSupportedException">The MSIL being generated is not currently in an exception block.   -or-   This <see cref="T:System.Reflection.Emit.ILGenerator"></see> belongs to a <see cref="T:System.Reflection.Emit.DynamicMethod"></see>.</exception>
    </member>
    <member name="M:System.Reflection.Emit.ILGenerator.BeginFinallyBlock">
      <summary>Begins a finally block in the Microsoft intermediate language (MSIL) instruction stream.</summary>
      <exception cref="T:System.NotSupportedException">The MSIL being generated is not currently in an exception block.</exception>
    </member>
    <member name="M:System.Reflection.Emit.ILGenerator.BeginScope">
      <summary>Begins a lexical scope.</summary>
      <exception cref="T:System.NotSupportedException">This <see cref="T:System.Reflection.Emit.ILGenerator"></see> belongs to a <see cref="T:System.Reflection.Emit.DynamicMethod"></see>.</exception>
    </member>
    <member name="M:System.Reflection.Emit.ILGenerator.DeclareLocal(System.Type)">
      <summary>Declares a local variable of the specified type.</summary>
      <param name="localType">A <see cref="T:System.Type"></see> object that represents the type of the local variable.</param>
      <returns>The declared local variable.</returns>
      <exception cref="T:System.ArgumentNullException"><paramref name="localType">localType</paramref> is null.</exception>
      <exception cref="T:System.InvalidOperationException">The containing type has been created by the <see cref="M:System.Reflection.Emit.TypeBuilder.CreateType"></see> method.</exception>
    </member>
    <member name="M:System.Reflection.Emit.ILGenerator.DeclareLocal(System.Type,System.Boolean)">
      <summary>Declares a local variable of the specified type, optionally pinning the object referred to by the variable.</summary>
      <param name="localType">A <see cref="T:System.Type"></see> object that represents the type of the local variable.</param>
      <param name="pinned">true to pin the object in memory; otherwise, false.</param>
      <returns>A <see cref="T:System.Reflection.Emit.LocalBuilder"></see> object that represents the local variable.</returns>
      <exception cref="T:System.ArgumentNullException"><paramref name="localType">localType</paramref> is null.</exception>
      <exception cref="T:System.InvalidOperationException">The containing type has been created by the <see cref="M:System.Reflection.Emit.TypeBuilder.CreateType"></see> method.   -or-   The method body of the enclosing method has been created by the <see cref="M:System.Reflection.Emit.MethodBuilder.CreateMethodBody(System.Byte[],System.Int32)"></see> method.</exception>
      <exception cref="T:System.NotSupportedException">The method with which this <see cref="T:System.Reflection.Emit.ILGenerator"></see> is associated is not represented by a <see cref="T:System.Reflection.Emit.MethodBuilder"></see>.</exception>
    </member>
    <member name="M:System.Reflection.Emit.ILGenerator.DefineLabel">
      <summary>Declares a new label.</summary>
      <returns>Returns a new label that can be used as a token for branching.</returns>
    </member>
    <member name="M:System.Reflection.Emit.ILGenerator.Emit(System.Reflection.Emit.OpCode,System.Type)">
      <summary>Puts the specified instruction onto the Microsoft intermediate language (MSIL) stream followed by the metadata token for the given type.</summary>
      <param name="opcode">The MSIL instruction to be put onto the stream.</param>
      <param name="cls">A Type.</param>
      <exception cref="T:System.ArgumentNullException"><paramref name="cls">cls</paramref> is null.</exception>
    </member>
    <member name="M:System.Reflection.Emit.ILGenerator.Emit(System.Reflection.Emit.OpCode,System.String)">
      <summary>Puts the specified instruction onto the Microsoft intermediate language (MSIL) stream followed by the metadata token for the given string.</summary>
      <param name="opcode">The MSIL instruction to be emitted onto the stream.</param>
      <param name="str">The String to be emitted.</param>
    </member>
    <member name="M:System.Reflection.Emit.ILGenerator.Emit(System.Reflection.Emit.OpCode,System.Single)">
      <summary>Puts the specified instruction and numerical argument onto the Microsoft intermediate language (MSIL) stream of instructions.</summary>
      <param name="opcode">The MSIL instruction to be put onto the stream.</param>
      <param name="arg">The Single argument pushed onto the stream immediately after the instruction.</param>
    </member>
    <member name="M:System.Reflection.Emit.ILGenerator.Emit(System.Reflection.Emit.OpCode,System.SByte)">
      <summary>Puts the specified instruction and character argument onto the Microsoft intermediate language (MSIL) stream of instructions.</summary>
      <param name="opcode">The MSIL instruction to be put onto the stream.</param>
      <param name="arg">The character argument pushed onto the stream immediately after the instruction.</param>
    </member>
    <member name="M:System.Reflection.Emit.ILGenerator.Emit(System.Reflection.Emit.OpCode,System.Reflection.FieldInfo)">
      <summary>Puts the specified instruction and metadata token for the specified field onto the Microsoft intermediate language (MSIL) stream of instructions.</summary>
      <param name="opcode">The MSIL instruction to be emitted onto the stream.</param>
      <param name="field">A FieldInfo representing a field.</param>
    </member>
    <member name="M:System.Reflection.Emit.ILGenerator.Emit(System.Reflection.Emit.OpCode,System.Reflection.Emit.SignatureHelper)">
      <summary>Puts the specified instruction and a signature token onto the Microsoft intermediate language (MSIL) stream of instructions.</summary>
      <param name="opcode">The MSIL instruction to be emitted onto the stream.</param>
      <param name="signature">A helper for constructing a signature token.</param>
      <exception cref="T:System.ArgumentNullException"><paramref name="signature">signature</paramref> is null.</exception>
    </member>
    <member name="M:System.Reflection.Emit.ILGenerator.Emit(System.Reflection.Emit.OpCode,System.Reflection.Emit.LocalBuilder)">
      <summary>Puts the specified instruction onto the Microsoft intermediate language (MSIL) stream followed by the index of the given local variable.</summary>
      <param name="opcode">The MSIL instruction to be emitted onto the stream.</param>
      <param name="local">A local variable.</param>
      <exception cref="T:System.ArgumentException">The parent method of the <paramref name="local">local</paramref> parameter does not match the method associated with this <see cref="T:System.Reflection.Emit.ILGenerator"></see>.</exception>
      <exception cref="T:System.ArgumentNullException"><paramref name="local">local</paramref> is null.</exception>
      <exception cref="T:System.InvalidOperationException"><paramref name="opcode">opcode</paramref> is a single-byte instruction, and <paramref name="local">local</paramref> represents a local variable with an index greater than Byte.MaxValue.</exception>
    </member>
    <member name="M:System.Reflection.Emit.ILGenerator.Emit(System.Reflection.Emit.OpCode,System.Reflection.Emit.Label[])">
      <summary>Puts the specified instruction onto the Microsoft intermediate language (MSIL) stream and leaves space to include a label when fixes are done.</summary>
      <param name="opcode">The MSIL instruction to be emitted onto the stream.</param>
      <param name="labels">The array of label objects to which to branch from this location. All of the labels will be used.</param>
      <exception cref="T:System.ArgumentNullException"><paramref name="con">con</paramref> is null. This exception is new in the .NET Framework 4.</exception>
    </member>
    <member name="M:System.Reflection.Emit.ILGenerator.Emit(System.Reflection.Emit.OpCode,System.Reflection.MethodInfo)">
      <summary>Puts the specified instruction onto the Microsoft intermediate language (MSIL) stream followed by the metadata token for the given method.</summary>
      <param name="opcode">The MSIL instruction to be emitted onto the stream.</param>
      <param name="meth">A MethodInfo representing a method.</param>
      <exception cref="T:System.ArgumentNullException"><paramref name="meth">meth</paramref> is null.</exception>
      <exception cref="T:System.NotSupportedException"><paramref name="meth">meth</paramref> is a generic method for which the <see cref="System.Reflection.MethodInfo.IsGenericMethodDefinition"></see> property is false.</exception>
    </member>
    <member name="M:System.Reflection.Emit.ILGenerator.Emit(System.Reflection.Emit.OpCode,System.Reflection.ConstructorInfo)">
      <summary>Puts the specified instruction and metadata token for the specified constructor onto the Microsoft intermediate language (MSIL) stream of instructions.</summary>
      <param name="opcode">The MSIL instruction to be emitted onto the stream.</param>
      <param name="con">A ConstructorInfo representing a constructor.</param>
      <exception cref="T:System.ArgumentNullException"><paramref name="con">con</paramref> is null. This exception is new in the .NET Framework 4.</exception>
    </member>
    <member name="M:System.Reflection.Emit.ILGenerator.Emit(System.Reflection.Emit.OpCode,System.Int64)">
      <summary>Puts the specified instruction and numerical argument onto the Microsoft intermediate language (MSIL) stream of instructions.</summary>
      <param name="opcode">The MSIL instruction to be put onto the stream.</param>
      <param name="arg">The numerical argument pushed onto the stream immediately after the instruction.</param>
    </member>
    <member name="M:System.Reflection.Emit.ILGenerator.Emit(System.Reflection.Emit.OpCode,System.Int32)">
      <summary>Puts the specified instruction and numerical argument onto the Microsoft intermediate language (MSIL) stream of instructions.</summary>
      <param name="opcode">The MSIL instruction to be put onto the stream.</param>
      <param name="arg">The numerical argument pushed onto the stream immediately after the instruction.</param>
    </member>
    <member name="M:System.Reflection.Emit.ILGenerator.Emit(System.Reflection.Emit.OpCode,System.Int16)">
      <summary>Puts the specified instruction and numerical argument onto the Microsoft intermediate language (MSIL) stream of instructions.</summary>
      <param name="opcode">The MSIL instruction to be emitted onto the stream.</param>
      <param name="arg">The Int argument pushed onto the stream immediately after the instruction.</param>
    </member>
    <member name="M:System.Reflection.Emit.ILGenerator.Emit(System.Reflection.Emit.OpCode,System.Double)">
      <summary>Puts the specified instruction and numerical argument onto the Microsoft intermediate language (MSIL) stream of instructions.</summary>
      <param name="opcode">The MSIL instruction to be put onto the stream. Defined in the OpCodes enumeration.</param>
      <param name="arg">The numerical argument pushed onto the stream immediately after the instruction.</param>
    </member>
    <member name="M:System.Reflection.Emit.ILGenerator.Emit(System.Reflection.Emit.OpCode,System.Byte)">
      <summary>Puts the specified instruction and character argument onto the Microsoft intermediate language (MSIL) stream of instructions.</summary>
      <param name="opcode">The MSIL instruction to be put onto the stream.</param>
      <param name="arg">The character argument pushed onto the stream immediately after the instruction.</param>
    </member>
    <member name="M:System.Reflection.Emit.ILGenerator.Emit(System.Reflection.Emit.OpCode)">
      <summary>Puts the specified instruction onto the stream of instructions.</summary>
      <param name="opcode">The Microsoft Intermediate Language (MSIL) instruction to be put onto the stream.</param>
    </member>
    <member name="M:System.Reflection.Emit.ILGenerator.Emit(System.Reflection.Emit.OpCode,System.Reflection.Emit.Label)">
      <summary>Puts the specified instruction onto the Microsoft intermediate language (MSIL) stream and leaves space to include a label when fixes are done.</summary>
      <param name="opcode">The MSIL instruction to be emitted onto the stream.</param>
      <param name="label">The label to which to branch from this location.</param>
    </member>
    <member name="M:System.Reflection.Emit.ILGenerator.EmitCall(System.Reflection.Emit.OpCode,System.Reflection.MethodInfo,System.Type[])">
      <summary>Puts a call or callvirt instruction onto the Microsoft intermediate language (MSIL) stream to call a varargs method.</summary>
      <param name="opcode">The MSIL instruction to be emitted onto the stream. Must be <see cref="F:System.Reflection.Emit.OpCodes.Call"></see>, <see cref="F:System.Reflection.Emit.OpCodes.Callvirt"></see>, or <see cref="F:System.Reflection.Emit.OpCodes.Newobj"></see>.</param>
      <param name="methodInfo">The varargs method to be called.</param>
      <param name="optionalParameterTypes">The types of the optional arguments if the method is a varargs method; otherwise, null.</param>
      <exception cref="T:System.ArgumentException"><paramref name="opcode">opcode</paramref> does not specify a method call.</exception>
      <exception cref="T:System.ArgumentNullException"><paramref name="methodInfo">methodInfo</paramref> is null.</exception>
      <exception cref="T:System.InvalidOperationException">The calling convention for the method is not varargs, but optional parameter types are supplied. This exception is thrown in the .NET Framework versions 1.0 and 1.1, In subsequent versions, no exception is thrown.</exception>
    </member>
    <member name="M:System.Reflection.Emit.ILGenerator.EmitCalli(System.Reflection.Emit.OpCode,System.Reflection.CallingConventions,System.Type,System.Type[],System.Type[])">
      <summary>Puts a <see cref="F:System.Reflection.Emit.OpCodes.Calli"></see> instruction onto the Microsoft intermediate language (MSIL) stream, specifying a managed calling convention for the indirect call.</summary>
      <param name="opcode">The MSIL instruction to be emitted onto the stream. Must be <see cref="F:System.Reflection.Emit.OpCodes.Calli"></see>.</param>
      <param name="callingConvention">The managed calling convention to be used.</param>
      <param name="returnType">The <see cref="T:System.Type"></see> of the result.</param>
      <param name="parameterTypes">The types of the required arguments to the instruction.</param>
      <param name="optionalParameterTypes">The types of the optional arguments for varargs calls.</param>
      <exception cref="T:System.InvalidOperationException"><paramref name="optionalParameterTypes">optionalParameterTypes</paramref> is not null, but <paramref name="callingConvention">callingConvention</paramref> does not include the <see cref="F:System.Reflection.CallingConventions.VarArgs"></see> flag.</exception>
    </member>
    <member name="M:System.Reflection.Emit.ILGenerator.EmitWriteLine(System.String)">
      <summary>Emits the Microsoft intermediate language (MSIL) to call <see cref="Overload:System.Console.WriteLine"></see> with a string.</summary>
      <param name="value">The string to be printed.</param>
    </member>
    <member name="M:System.Reflection.Emit.ILGenerator.EmitWriteLine(System.Reflection.FieldInfo)">
      <summary>Emits the Microsoft intermediate language (MSIL) necessary to call <see cref="Overload:System.Console.WriteLine"></see> with the given field.</summary>
      <param name="fld">The field whose value is to be written to the console.</param>
      <exception cref="T:System.ArgumentException">There is no overload of the <see cref="Overload:System.Console.WriteLine"></see> method that accepts the type of the specified field.</exception>
      <exception cref="T:System.ArgumentNullException"><paramref name="fld">fld</paramref> is null.</exception>
      <exception cref="T:System.NotSupportedException">The type of the field is <see cref="T:System.Reflection.Emit.TypeBuilder"></see> or <see cref="T:System.Reflection.Emit.EnumBuilder"></see>, which are not supported.</exception>
    </member>
    <member name="M:System.Reflection.Emit.ILGenerator.EmitWriteLine(System.Reflection.Emit.LocalBuilder)">
      <summary>Emits the Microsoft intermediate language (MSIL) necessary to call <see cref="Overload:System.Console.WriteLine"></see> with the given local variable.</summary>
      <param name="localBuilder">The local variable whose value is to be written to the console.</param>
      <exception cref="T:System.ArgumentException">The type of <paramref name="localBuilder">localBuilder</paramref> is <see cref="T:System.Reflection.Emit.TypeBuilder"></see> or <see cref="T:System.Reflection.Emit.EnumBuilder"></see>, which are not supported.   -or-   There is no overload of <see cref="Overload:System.Console.WriteLine"></see> that accepts the type of <paramref name="localBuilder">localBuilder</paramref>.</exception>
      <exception cref="T:System.ArgumentNullException"><paramref name="localBuilder">localBuilder</paramref> is null.</exception>
    </member>
    <member name="M:System.Reflection.Emit.ILGenerator.EndExceptionBlock">
      <summary>Ends an exception block.</summary>
      <exception cref="T:System.InvalidOperationException">The end exception block occurs in an unexpected place in the code stream.</exception>
      <exception cref="T:System.NotSupportedException">The Microsoft intermediate language (MSIL) being generated is not currently in an exception block.</exception>
    </member>
    <member name="M:System.Reflection.Emit.ILGenerator.EndScope">
      <summary>Ends a lexical scope.</summary>
      <exception cref="T:System.NotSupportedException">This <see cref="T:System.Reflection.Emit.ILGenerator"></see> belongs to a <see cref="T:System.Reflection.Emit.DynamicMethod"></see>.</exception>
    </member>
    <member name="P:System.Reflection.Emit.ILGenerator.ILOffset">
      <summary>Gets the current offset, in bytes, in the Microsoft intermediate language (MSIL) stream that is being emitted by the <see cref="T:System.Reflection.Emit.ILGenerator"></see>.</summary>
      <returns>The offset in the MSIL stream at which the next instruction will be emitted.</returns>
    </member>
    <member name="M:System.Reflection.Emit.ILGenerator.MarkLabel(System.Reflection.Emit.Label)">
      <summary>Marks the Microsoft intermediate language (MSIL) stream's current position with the given label.</summary>
      <param name="loc">The label for which to set an index.</param>
      <exception cref="T:System.ArgumentException"><paramref name="loc">loc</paramref> represents an invalid index into the label array.   -or-   An index for <paramref name="loc">loc</paramref> has already been defined.</exception>
    </member>
    <member name="M:System.Reflection.Emit.ILGenerator.ThrowException(System.Type)">
      <summary>Emits an instruction to throw an exception.</summary>
      <param name="excType">The class of the type of exception to throw.</param>
      <exception cref="T:System.ArgumentException"><paramref name="excType">excType</paramref> is not the <see cref="T:System.Exception"></see> class or a derived class of <see cref="T:System.Exception"></see>.   -or-   The type does not have a default constructor.</exception>
      <exception cref="T:System.ArgumentNullException"><paramref name="excType">excType</paramref> is null.</exception>
    </member>
    <member name="M:System.Reflection.Emit.ILGenerator.UsingNamespace(System.String)">
      <summary>Specifies the namespace to be used in evaluating locals and watches for the current active lexical scope.</summary>
      <param name="usingNamespace">The namespace to be used in evaluating locals and watches for the current active lexical scope</param>
      <exception cref="T:System.ArgumentException">Length of <paramref name="usingNamespace">usingNamespace</paramref> is zero.</exception>
      <exception cref="T:System.ArgumentNullException"><paramref name="usingNamespace">usingNamespace</paramref> is null.</exception>
      <exception cref="T:System.NotSupportedException">This <see cref="T:System.Reflection.Emit.ILGenerator"></see> belongs to a <see cref="T:System.Reflection.Emit.DynamicMethod"></see>.</exception>
    </member>
    <member name="T:System.Reflection.Emit.Label">
      <summary>Represents a label in the instruction stream. Label is used in conjunction with the <see cref="T:System.Reflection.Emit.ILGenerator"></see> class.</summary>
    </member>
    <member name="M:System.Reflection.Emit.Label.Equals(System.Object)">
      <summary>Checks if the given object is an instance of Label and is equal to this instance.</summary>
      <param name="obj">The object to compare with this Label instance.</param>
      <returns>Returns true if <paramref name="obj">obj</paramref> is an instance of Label and is equal to this object; otherwise, false.</returns>
    </member>
    <member name="M:System.Reflection.Emit.Label.Equals(System.Reflection.Emit.Label)">
      <summary>Indicates whether the current instance is equal to the specified <see cref="T:System.Reflection.Emit.Label"></see>.</summary>
      <param name="obj">The <see cref="T:System.Reflection.Emit.Label"></see> to compare to the current instance.</param>
      <returns>true if the value of <paramref name="obj">obj</paramref> is equal to the value of the current instance; otherwise, false.</returns>
    </member>
    <member name="M:System.Reflection.Emit.Label.GetHashCode">
      <summary>Generates a hash code for this instance.</summary>
      <returns>Returns a hash code for this instance.</returns>
    </member>
    <member name="M:System.Reflection.Emit.Label.op_Equality(System.Reflection.Emit.Label,System.Reflection.Emit.Label)">
      <summary>Indicates whether two <see cref="T:System.Reflection.Emit.Label"></see> structures are equal.</summary>
      <param name="a">The <see cref="T:System.Reflection.Emit.Label"></see> to compare to b.</param>
      <param name="b">The <see cref="T:System.Reflection.Emit.Label"></see> to compare to a.</param>
      <returns>true if <paramref name="a">a</paramref> is equal to <paramref name="b">b</paramref>; otherwise, false.</returns>
    </member>
    <member name="M:System.Reflection.Emit.Label.op_Inequality(System.Reflection.Emit.Label,System.Reflection.Emit.Label)">
      <summary>Indicates whether two <see cref="T:System.Reflection.Emit.Label"></see> structures are not equal.</summary>
      <param name="a">The <see cref="T:System.Reflection.Emit.Label"></see> to compare to b.</param>
      <param name="b">The <see cref="T:System.Reflection.Emit.Label"></see> to compare to a.</param>
      <returns>true if <paramref name="a">a</paramref> is not equal to <paramref name="b">b</paramref>; otherwise, false.</returns>
    </member>
    <member name="T:System.Reflection.Emit.LocalBuilder">
      <summary>Represents a local variable within a method or constructor.</summary>
    </member>
    <member name="P:System.Reflection.Emit.LocalBuilder.IsPinned">
      <summary>Gets a value indicating whether the object referred to by the local variable is pinned in memory.</summary>
      <returns>true if the object referred to by the local variable is pinned in memory; otherwise, false.</returns>
    </member>
    <member name="P:System.Reflection.Emit.LocalBuilder.LocalIndex">
      <summary>Gets the zero-based index of the local variable within the method body.</summary>
      <returns>An integer value that represents the order of declaration of the local variable within the method body.</returns>
    </member>
    <member name="P:System.Reflection.Emit.LocalBuilder.LocalType">
      <summary>Gets the type of the local variable.</summary>
      <returns>The <see cref="T:System.Type"></see> of the local variable.</returns>
    </member>
    <member name="T:System.Reflection.Emit.ParameterBuilder">
      <summary>Creates or associates parameter information.</summary>
    </member>
    <member name="P:System.Reflection.Emit.ParameterBuilder.Attributes">
      <summary>Retrieves the attributes for this parameter.</summary>
      <returns>Read-only. Retrieves the attributes for this parameter.</returns>
    </member>
    <member name="P:System.Reflection.Emit.ParameterBuilder.IsIn">
      <summary>Retrieves whether this is an input parameter.</summary>
      <returns>Read-only. Retrieves whether this is an input parameter.</returns>
    </member>
    <member name="P:System.Reflection.Emit.ParameterBuilder.IsOptional">
      <summary>Retrieves whether this parameter is optional.</summary>
      <returns>Read-only. Specifies whether this parameter is optional.</returns>
    </member>
    <member name="P:System.Reflection.Emit.ParameterBuilder.IsOut">
      <summary>Retrieves whether this parameter is an output parameter.</summary>
      <returns>Read-only. Retrieves whether this parameter is an output parameter.</returns>
    </member>
    <member name="P:System.Reflection.Emit.ParameterBuilder.Name">
      <summary>Retrieves the name of this parameter.</summary>
      <returns>Read-only. Retrieves the name of this parameter.</returns>
    </member>
    <member name="P:System.Reflection.Emit.ParameterBuilder.Position">
      <summary>Retrieves the signature position for this parameter.</summary>
      <returns>Read-only. Retrieves the signature position for this parameter.</returns>
    </member>
    <member name="M:System.Reflection.Emit.ParameterBuilder.SetConstant(System.Object)">
      <summary>Sets the default value of the parameter.</summary>
      <param name="defaultValue">The default value of this parameter.</param>
      <exception cref="T:System.ArgumentException">The parameter is not one of the supported types.   -or-   The type of <paramref name="defaultValue">defaultValue</paramref> does not match the type of the parameter.   -or-   The parameter is of type <see cref="T:System.Object"></see> or other reference type, <paramref name="defaultValue">defaultValue</paramref> is not null, and the value cannot be assigned to the reference type.</exception>
    </member>
    <member name="M:System.Reflection.Emit.ParameterBuilder.SetCustomAttribute(System.Reflection.Emit.CustomAttributeBuilder)">
      <summary>Set a custom attribute using a custom attribute builder.</summary>
      <param name="customBuilder">An instance of a helper class to define the custom attribute.</param>
      <exception cref="T:System.ArgumentNullException"><paramref name="con">con</paramref> is null.</exception>
    </member>
    <member name="M:System.Reflection.Emit.ParameterBuilder.SetCustomAttribute(System.Reflection.ConstructorInfo,System.Byte[])">
      <summary>Set a custom attribute using a specified custom attribute blob.</summary>
      <param name="con">The constructor for the custom attribute.</param>
      <param name="binaryAttribute">A byte blob representing the attributes.</param>
      <exception cref="T:System.ArgumentNullException"><paramref name="con">con</paramref> or <paramref name="binaryAttribute">binaryAttribute</paramref> is null.</exception>
    </member>
    <member name="T:System.Reflection.Emit.SignatureHelper">
      <summary>Provides methods for building signatures.</summary>
    </member>
    <member name="M:System.Reflection.Emit.SignatureHelper.AddArgument(System.Type)">
      <summary>Adds an argument to the signature.</summary>
      <param name="clsArgument">The type of the argument.</param>
      <exception cref="T:System.ArgumentException">The signature has already been finished.</exception>
      <exception cref="T:System.ArgumentNullException"><paramref name="clsArgument">clsArgument</paramref> is null.</exception>
    </member>
    <member name="M:System.Reflection.Emit.SignatureHelper.AddArgument(System.Type,System.Boolean)">
      <summary>Adds an argument of the specified type to the signature, specifying whether the argument is pinned.</summary>
      <param name="argument">The argument type.</param>
      <param name="pinned">true if the argument is pinned; otherwise, false.</param>
      <exception cref="T:System.ArgumentNullException"><paramref name="argument">argument</paramref> is null.</exception>
    </member>
    <member name="M:System.Reflection.Emit.SignatureHelper.AddArgument(System.Type,System.Type[],System.Type[])">
      <summary>Adds an argument to the signature, with the specified custom modifiers.</summary>
      <param name="argument">The argument type.</param>
      <param name="requiredCustomModifiers">An array of types representing the required custom modifiers for the argument, such as <see cref="T:System.Runtime.CompilerServices.IsConst"></see> or <see cref="T:System.Runtime.CompilerServices.IsBoxed"></see>. If the argument has no required custom modifiers, specify null.</param>
      <param name="optionalCustomModifiers">An array of types representing the optional custom modifiers for the argument, such as <see cref="T:System.Runtime.CompilerServices.IsConst"></see> or <see cref="T:System.Runtime.CompilerServices.IsBoxed"></see>. If the argument has no optional custom modifiers, specify null.</param>
      <exception cref="T:System.ArgumentNullException"><paramref name="argument">argument</paramref> is null.   -or-   An element of <paramref name="requiredCustomModifiers">requiredCustomModifiers</paramref> or <paramref name="optionalCustomModifiers">optionalCustomModifiers</paramref> is null.</exception>
      <exception cref="T:System.ArgumentException">The signature has already been finished.   -or-   One of the specified custom modifiers is an array type.   -or-   One of the specified custom modifiers is an open generic type. That is, the <see cref="P:System.Type.ContainsGenericParameters"></see> property is true for the custom modifier.</exception>
    </member>
    <member name="M:System.Reflection.Emit.SignatureHelper.AddArguments(System.Type[],System.Type[][],System.Type[][])">
      <summary>Adds a set of arguments to the signature, with the specified custom modifiers.</summary>
      <param name="arguments">The types of the arguments to be added.</param>
      <param name="requiredCustomModifiers">An array of arrays of types. Each array of types represents the required custom modifiers for the corresponding argument, such as <see cref="T:System.Runtime.CompilerServices.IsConst"></see> or <see cref="T:System.Runtime.CompilerServices.IsBoxed"></see>. If a particular argument has no required custom modifiers, specify null instead of an array of types. If none of the arguments have required custom modifiers, specify null instead of an array of arrays.</param>
      <param name="optionalCustomModifiers">An array of arrays of types. Each array of types represents the optional custom modifiers for the corresponding argument, such as <see cref="T:System.Runtime.CompilerServices.IsConst"></see> or <see cref="T:System.Runtime.CompilerServices.IsBoxed"></see>. If a particular argument has no optional custom modifiers, specify null instead of an array of types. If none of the arguments have optional custom modifiers, specify null instead of an array of arrays.</param>
      <exception cref="T:System.ArgumentNullException">An element of <paramref name="arguments">arguments</paramref> is null.   -or-   One of the specified custom modifiers is null. (However, null can be specified for the array of custom modifiers for any argument.)</exception>
      <exception cref="T:System.ArgumentException">The signature has already been finished.   -or-   One of the specified custom modifiers is an array type.   -or-   One of the specified custom modifiers is an open generic type. That is, the <see cref="P:System.Type.ContainsGenericParameters"></see> property is true for the custom modifier.   -or-   The size of <paramref name="requiredCustomModifiers">requiredCustomModifiers</paramref> or <paramref name="optionalCustomModifiers">optionalCustomModifiers</paramref> does not equal the size of <paramref name="arguments">arguments</paramref>.</exception>
    </member>
    <member name="M:System.Reflection.Emit.SignatureHelper.AddSentinel">
      <summary>Marks the end of a vararg fixed part. This is only used if the caller is creating a vararg signature call site.</summary>
    </member>
    <member name="M:System.Reflection.Emit.SignatureHelper.Equals(System.Object)">
      <summary>Checks if this instance is equal to the given object.</summary>
      <param name="obj">The object with which this instance should be compared.</param>
      <returns>true if the given object is a SignatureHelper and represents the same signature; otherwise, false.</returns>
    </member>
    <member name="M:System.Reflection.Emit.SignatureHelper.GetFieldSigHelper(System.Reflection.Module)">
      <summary>Returns a signature helper for a field.</summary>
      <param name="mod">The dynamic module that contains the field for which the SignatureHelper is requested.</param>
      <returns>The SignatureHelper object for a field.</returns>
    </member>
    <member name="M:System.Reflection.Emit.SignatureHelper.GetHashCode">
      <summary>Creates and returns a hash code for this instance.</summary>
      <returns>Returns the hash code based on the name.</returns>
    </member>
    <member name="M:System.Reflection.Emit.SignatureHelper.GetLocalVarSigHelper">
      <summary>Returns a signature helper for a local variable.</summary>
      <returns>A <see cref="T:System.Reflection.Emit.SignatureHelper"></see> for a local variable.</returns>
    </member>
    <member name="M:System.Reflection.Emit.SignatureHelper.GetLocalVarSigHelper(System.Reflection.Module)">
      <summary>Returns a signature helper for a local variable.</summary>
      <param name="mod">The dynamic module that contains the local variable for which the SignatureHelper is requested.</param>
      <returns>The SignatureHelper object for a local variable.</returns>
    </member>
    <member name="M:System.Reflection.Emit.SignatureHelper.GetMethodSigHelper(System.Reflection.Module,System.Type,System.Type[])">
      <summary>Returns a signature helper for a method with a standard calling convention, given the method's module, return type, and argument types.</summary>
      <param name="mod">The <see cref="T:System.Reflection.Emit.ModuleBuilder"></see> that contains the method for which the SignatureHelper is requested.</param>
      <param name="returnType">The return type of the method, or null for a void return type (Sub procedure in Visual Basic).</param>
      <param name="parameterTypes">The types of the arguments of the method, or null if the method has no arguments.</param>
      <returns>The SignatureHelper object for a method.</returns>
      <exception cref="T:System.ArgumentNullException"><paramref name="mod">mod</paramref> is null.   -or-   An element of <paramref name="parameterTypes">parameterTypes</paramref> is null.</exception>
      <exception cref="T:System.ArgumentException"><paramref name="mod">mod</paramref> is not a <see cref="T:System.Reflection.Emit.ModuleBuilder"></see>.</exception>
    </member>
    <member name="M:System.Reflection.Emit.SignatureHelper.GetMethodSigHelper(System.Reflection.CallingConventions,System.Type)">
      <summary>Returns a signature helper for a method given the method's calling convention and return type.</summary>
      <param name="callingConvention">The calling convention of the method.</param>
      <param name="returnType">The return type of the method, or null for a void return type (Sub procedure in Visual Basic).</param>
      <returns>The SignatureHelper object for a method.</returns>
    </member>
    <member name="M:System.Reflection.Emit.SignatureHelper.GetMethodSigHelper(System.Reflection.Module,System.Reflection.CallingConventions,System.Type)">
      <summary>Returns a signature helper for a method given the method's module, calling convention, and return type.</summary>
      <param name="mod">The <see cref="T:System.Reflection.Emit.ModuleBuilder"></see> that contains the method for which the SignatureHelper is requested.</param>
      <param name="callingConvention">The calling convention of the method.</param>
      <param name="returnType">The return type of the method, or null for a void return type (Sub procedure in Visual Basic).</param>
      <returns>The SignatureHelper object for a method.</returns>
      <exception cref="T:System.ArgumentNullException"><paramref name="mod">mod</paramref> is null.</exception>
      <exception cref="T:System.ArgumentException"><paramref name="mod">mod</paramref> is not a <see cref="T:System.Reflection.Emit.ModuleBuilder"></see>.</exception>
    </member>
    <member name="M:System.Reflection.Emit.SignatureHelper.GetPropertySigHelper(System.Reflection.Module,System.Type,System.Type[])">
      <summary>Returns a signature helper for a property, given the dynamic module that contains the property, the property type, and the property arguments.</summary>
      <param name="mod">The <see cref="T:System.Reflection.Emit.ModuleBuilder"></see> that contains the property for which the <see cref="T:System.Reflection.Emit.SignatureHelper"></see> is requested.</param>
      <param name="returnType">The property type.</param>
      <param name="parameterTypes">The argument types, or null if the property has no arguments.</param>
      <returns>A <see cref="T:System.Reflection.Emit.SignatureHelper"></see> object for a property.</returns>
      <exception cref="T:System.ArgumentNullException"><paramref name="mod">mod</paramref> is null.   -or-   An element of <paramref name="parameterTypes">parameterTypes</paramref> is null.</exception>
      <exception cref="T:System.ArgumentException"><paramref name="mod">mod</paramref> is not a <see cref="T:System.Reflection.Emit.ModuleBuilder"></see>.</exception>
    </member>
    <member name="M:System.Reflection.Emit.SignatureHelper.GetPropertySigHelper(System.Reflection.Module,System.Type,System.Type[],System.Type[],System.Type[],System.Type[][],System.Type[][])">
      <summary>Returns a signature helper for a property, given the dynamic module that contains the property, the property type, the property arguments, and custom modifiers for the return type and arguments.</summary>
      <param name="mod">The <see cref="T:System.Reflection.Emit.ModuleBuilder"></see> that contains the property for which the <see cref="T:System.Reflection.Emit.SignatureHelper"></see> is requested.</param>
      <param name="returnType">The property type.</param>
      <param name="requiredReturnTypeCustomModifiers">An array of types representing the required custom modifiers for the return type, such as <see cref="T:System.Runtime.CompilerServices.IsConst"></see> or <see cref="T:System.Runtime.CompilerServices.IsBoxed"></see>. If the return type has no required custom modifiers, specify null.</param>
      <param name="optionalReturnTypeCustomModifiers">An array of types representing the optional custom modifiers for the return type, such as <see cref="T:System.Runtime.CompilerServices.IsConst"></see> or <see cref="T:System.Runtime.CompilerServices.IsBoxed"></see>. If the return type has no optional custom modifiers, specify null.</param>
      <param name="parameterTypes">The types of the property's arguments, or null if the property has no arguments.</param>
      <param name="requiredParameterTypeCustomModifiers">An array of arrays of types. Each array of types represents the required custom modifiers for the corresponding argument of the property. If a particular argument has no required custom modifiers, specify null instead of an array of types. If the property has no arguments, or if none of the arguments have required custom modifiers, specify null instead of an array of arrays.</param>
      <param name="optionalParameterTypeCustomModifiers">An array of arrays of types. Each array of types represents the optional custom modifiers for the corresponding argument of the property. If a particular argument has no optional custom modifiers, specify null instead of an array of types. If the property has no arguments, or if none of the arguments have optional custom modifiers, specify null instead of an array of arrays.</param>
      <returns>A <see cref="T:System.Reflection.Emit.SignatureHelper"></see> object for a property.</returns>
      <exception cref="T:System.ArgumentNullException"><paramref name="mod">mod</paramref> is null.   -or-   An element of <paramref name="parameterTypes">parameterTypes</paramref> is null.   -or-   One of the specified custom modifiers is null. (However, null can be specified for the array of custom modifiers for any argument.)</exception>
      <exception cref="T:System.ArgumentException">The signature has already been finished.   -or-  <paramref name="mod">mod</paramref> is not a <see cref="T:System.Reflection.Emit.ModuleBuilder"></see>.   -or-   One of the specified custom modifiers is an array type.   -or-   One of the specified custom modifiers is an open generic type. That is, the <see cref="P:System.Type.ContainsGenericParameters"></see> property is true for the custom modifier.   -or-   The size of <paramref name="requiredParameterTypeCustomModifiers">requiredParameterTypeCustomModifiers</paramref> or <paramref name="optionalParameterTypeCustomModifiers">optionalParameterTypeCustomModifiers</paramref> does not equal the size of <paramref name="parameterTypes">parameterTypes</paramref>.</exception>
    </member>
    <member name="M:System.Reflection.Emit.SignatureHelper.GetPropertySigHelper(System.Reflection.Module,System.Reflection.CallingConventions,System.Type,System.Type[],System.Type[],System.Type[],System.Type[][],System.Type[][])">
      <summary>Returns a signature helper for a property, given the dynamic module that contains the property, the calling convention, the property type, the property arguments, and custom modifiers for the return type and arguments.</summary>
      <param name="mod">The <see cref="T:System.Reflection.Emit.ModuleBuilder"></see> that contains the property for which the <see cref="T:System.Reflection.Emit.SignatureHelper"></see> is requested.</param>
      <param name="callingConvention">The calling convention of the property accessors.</param>
      <param name="returnType">The property type.</param>
      <param name="requiredReturnTypeCustomModifiers">An array of types representing the required custom modifiers for the return type, such as <see cref="T:System.Runtime.CompilerServices.IsConst"></see> or <see cref="T:System.Runtime.CompilerServices.IsBoxed"></see>. If the return type has no required custom modifiers, specify null.</param>
      <param name="optionalReturnTypeCustomModifiers">An array of types representing the optional custom modifiers for the return type, such as <see cref="T:System.Runtime.CompilerServices.IsConst"></see> or <see cref="T:System.Runtime.CompilerServices.IsBoxed"></see>. If the return type has no optional custom modifiers, specify null.</param>
      <param name="parameterTypes">The types of the property's arguments, or null if the property has no arguments.</param>
      <param name="requiredParameterTypeCustomModifiers">An array of arrays of types. Each array of types represents the required custom modifiers for the corresponding argument of the property. If a particular argument has no required custom modifiers, specify null instead of an array of types. If the property has no arguments, or if none of the arguments have required custom modifiers, specify null instead of an array of arrays.</param>
      <param name="optionalParameterTypeCustomModifiers">An array of arrays of types. Each array of types represents the optional custom modifiers for the corresponding argument of the property. If a particular argument has no optional custom modifiers, specify null instead of an array of types. If the property has no arguments, or if none of the arguments have optional custom modifiers, specify null instead of an array of arrays.</param>
      <returns>A <see cref="T:System.Reflection.Emit.SignatureHelper"></see> object for a property.</returns>
      <exception cref="T:System.ArgumentNullException"><paramref name="mod">mod</paramref> is null.   -or-   An element of <paramref name="parameterTypes">parameterTypes</paramref> is null.   -or-   One of the specified custom modifiers is null. (However, null can be specified for the array of custom modifiers for any argument.)</exception>
      <exception cref="T:System.ArgumentException">The signature has already been finished.   -or-  <paramref name="mod">mod</paramref> is not a <see cref="T:System.Reflection.Emit.ModuleBuilder"></see>.   -or-   One of the specified custom modifiers is an array type.   -or-   One of the specified custom modifiers is an open generic type. That is, the <see cref="P:System.Type.ContainsGenericParameters"></see> property is true for the custom modifier.   -or-   The size of <paramref name="requiredParameterTypeCustomModifiers">requiredParameterTypeCustomModifiers</paramref> or <paramref name="optionalParameterTypeCustomModifiers">optionalParameterTypeCustomModifiers</paramref> does not equal the size of <paramref name="parameterTypes">parameterTypes</paramref>.</exception>
    </member>
    <member name="M:System.Reflection.Emit.SignatureHelper.GetSignature">
      <summary>Adds the end token to the signature and marks the signature as finished, so no further tokens can be added.</summary>
      <returns>Returns a byte array made up of the full signature.</returns>
    </member>
    <member name="M:System.Reflection.Emit.SignatureHelper.ToString">
      <summary>Returns a string representing the signature arguments.</summary>
      <returns>Returns a string representing the arguments of this signature.</returns>
    </member>
  </members>
</doc></span>