System.Reflection.Emit.xml
142 KB
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
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
1362
1363
1364
1365
1366
1367
1368
1369
1370
1371
1372
1373
1374
1375
1376
1377
1378
1379
1380
1381
1382
1383
1384
1385
1386
1387
1388
1389
1390
1391
1392
1393
1394
1395
1396
1397
1398
1399
1400
1401
1402
1403
1404
1405
1406
1407
1408
1409
1410
1411
1412
1413
1414
1415
1416
1417
1418
1419
1420
1421
1422
1423
1424
1425
1426
1427
1428
1429
1430
1431
1432
1433
1434
1435
1436
1437
1438
1439
1440
1441
1442
1443
1444
1445
1446
1447
1448
1449
1450
1451
1452
1453
1454
1455
1456
1457
1458
1459
1460
1461
1462
1463
1464
1465
1466
1467
1468
1469
1470
1471
1472
1473
1474
1475
1476
1477
1478
1479
1480
1481
1482
1483
1484
1485
1486
1487
1488
1489
1490
1491
1492
1493
<?xml version="1.0" encoding="utf-8"?>
<doc>
<assembly>
<name>System.Reflection.Emit</name>
</assembly>
<members>
<member name="T:System.Reflection.Emit.AssemblyBuilder">
<summary>Defines and represents a dynamic assembly.</summary>
</member>
<member name="P:System.Reflection.Emit.AssemblyBuilder.DefinedTypes"></member>
<member name="M:System.Reflection.Emit.AssemblyBuilder.DefineDynamicAssembly(System.Reflection.AssemblyName,System.Reflection.Emit.AssemblyBuilderAccess)">
<summary>Defines a dynamic assembly that has the specified name and access rights.</summary>
<returns>An object that represents the new assembly.</returns>
<param name="name">The name of the assembly.</param>
<param name="access">The access rights of the assembly.</param>
</member>
<member name="M:System.Reflection.Emit.AssemblyBuilder.DefineDynamicAssembly(System.Reflection.AssemblyName,System.Reflection.Emit.AssemblyBuilderAccess,System.Collections.Generic.IEnumerable{System.Reflection.Emit.CustomAttributeBuilder})">
<summary>Defines a new assembly that has the specified name, access rights, and attributes.</summary>
<returns>An object that represents the new assembly.</returns>
<param name="name">The name of the assembly.</param>
<param name="access">The access rights of the assembly.</param>
<param name="assemblyAttributes">A collection that contains the attributes of the assembly.</param>
</member>
<member name="M:System.Reflection.Emit.AssemblyBuilder.DefineDynamicModule(System.String)">
<summary>Defines a named transient dynamic module in this assembly.</summary>
<returns>A <see cref="T:System.Reflection.Emit.ModuleBuilder" /> representing the defined dynamic module.</returns>
<param name="name">The name of the dynamic module. Must be less than 260 characters in length. </param>
<exception cref="T:System.ArgumentException">
<paramref name="name" /> begins with white space.-or- The length of <paramref name="name" /> is zero.-or- The length of <paramref name="name" /> is greater than or equal to 260. </exception>
<exception cref="T:System.ArgumentNullException">
<paramref name="name" /> is null. </exception>
<exception cref="T:System.Security.SecurityException">The caller does not have the required permission. </exception>
<exception cref="T:System.ExecutionEngineException">The assembly for default symbol writer cannot be loaded.-or- The type that implements the default symbol writer interface cannot be found. </exception>
<PermissionSet>
<IPermission class="System.Security.Permissions.FileIOPermission, mscorlib, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" version="1" Read="*AllFiles*" PathDiscovery="*AllFiles*" />
<IPermission class="System.Security.Permissions.ReflectionPermission, mscorlib, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" version="1" Flags="MemberAccess" />
</PermissionSet>
</member>
<member name="M:System.Reflection.Emit.AssemblyBuilder.Equals(System.Object)">
<summary>Returns a value that indicates whether this instance is equal to the specified object.</summary>
<returns>true if <paramref name="obj" /> equals the type and value of this instance; otherwise, false.</returns>
<param name="obj">An object to compare with this instance, or null.</param>
</member>
<member name="P:System.Reflection.Emit.AssemblyBuilder.FullName">
<summary>Gets the display name of the current dynamic assembly. </summary>
<returns>The display name of the dynamic assembly.</returns>
</member>
<member name="M:System.Reflection.Emit.AssemblyBuilder.GetDynamicModule(System.String)">
<summary>Returns the dynamic module with the specified name.</summary>
<returns>A ModuleBuilder object representing the requested dynamic module.</returns>
<param name="name">The name of the requested dynamic module. </param>
<exception cref="T:System.ArgumentNullException">
<paramref name="name" /> is null. </exception>
<exception cref="T:System.ArgumentException">The length of <paramref name="name" /> is zero. </exception>
<exception cref="T:System.Security.SecurityException">The caller does not have the required permission. </exception>
</member>
<member name="M:System.Reflection.Emit.AssemblyBuilder.GetHashCode">
<summary>Returns the hash code for this instance.</summary>
<returns>A 32-bit signed integer hash code.</returns>
</member>
<member name="M:System.Reflection.Emit.AssemblyBuilder.GetManifestResourceInfo(System.String)">
<summary>Returns information about how the given resource has been persisted.</summary>
<returns>
<see cref="T:System.Reflection.ManifestResourceInfo" /> populated with information about the resource's topology, or null if the resource is not found.</returns>
<param name="resourceName">The name of the resource. </param>
<exception cref="T:System.NotSupportedException">This method is not currently supported. </exception>
<exception cref="T:System.Security.SecurityException">The caller does not have the required permission. </exception>
</member>
<member name="M:System.Reflection.Emit.AssemblyBuilder.GetManifestResourceNames">
<summary>Loads the specified manifest resource from this assembly.</summary>
<returns>An array of type String containing the names of all the resources.</returns>
<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>
<exception cref="T:System.Security.SecurityException">The caller does not have the required permission. </exception>
</member>
<member name="M:System.Reflection.Emit.AssemblyBuilder.GetManifestResourceStream(System.String)">
<summary>Loads the specified manifest resource from this assembly.</summary>
<returns>A <see cref="T:System.IO.Stream" /> representing this manifest resource.</returns>
<param name="name">The name of the manifest resource being requested. </param>
<exception cref="T:System.NotSupportedException">This method is not currently supported. </exception>
<exception cref="T:System.Security.SecurityException">The caller does not have the required permission. </exception>
</member>
<member name="P:System.Reflection.Emit.AssemblyBuilder.IsDynamic">
<summary>Gets a value that indicates that the current assembly is a dynamic assembly.</summary>
<returns>Always true.</returns>
</member>
<member name="P:System.Reflection.Emit.AssemblyBuilder.ManifestModule">
<summary>Gets the module in the current <see cref="T:System.Reflection.Emit.AssemblyBuilder" /> that contains the assembly manifest.</summary>
<returns>The manifest module.</returns>
</member>
<member name="P:System.Reflection.Emit.AssemblyBuilder.Modules"></member>
<member name="M:System.Reflection.Emit.AssemblyBuilder.SetCustomAttribute(System.Reflection.ConstructorInfo,System.Byte[])">
<summary>Set a custom attribute on this assembly 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" /> or <paramref name="binaryAttribute" /> is null. </exception>
<exception cref="T:System.Security.SecurityException">The caller does not have the required permission. </exception>
<exception cref="T:System.ArgumentException">
<paramref name="con" /> is not a RuntimeConstructorInfo.</exception>
</member>
<member name="M:System.Reflection.Emit.AssemblyBuilder.SetCustomAttribute(System.Reflection.Emit.CustomAttributeBuilder)">
<summary>Set a custom attribute on this assembly 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" /> is null. </exception>
<exception cref="T:System.Security.SecurityException">The caller does not have the required permission. </exception>
</member>
<member name="T:System.Reflection.Emit.AssemblyBuilderAccess">
<summary>Defines the access modes for a dynamic assembly. </summary>
</member>
<member name="F:System.Reflection.Emit.AssemblyBuilderAccess.Run">
<summary>The dynamic assembly can be executed, but not saved.</summary>
</member>
<member name="F:System.Reflection.Emit.AssemblyBuilderAccess.RunAndCollect">
<summary>The dynamic assembly can be unloaded and its memory reclaimed, subject to the restrictions described in Collectible Assemblies for Dynamic Type Generation.</summary>
</member>
<member name="T:System.Reflection.Emit.ConstructorBuilder">
<summary>Defines and represents a constructor of a dynamic class.</summary>
</member>
<member name="P:System.Reflection.Emit.ConstructorBuilder.Attributes">
<summary>Retrieves the attributes for this constructor.</summary>
<returns>Returns the attributes for this constructor.</returns>
</member>
<member name="P:System.Reflection.Emit.ConstructorBuilder.CallingConvention">
<summary>Gets a <see cref="T:System.Reflection.CallingConventions" /> value that depends on whether the declaring type is generic.</summary>
<returns>
<see cref="F:System.Reflection.CallingConventions.HasThis" /> if the declaring type is generic; otherwise, <see cref="F:System.Reflection.CallingConventions.Standard" />. </returns>
</member>
<member name="P:System.Reflection.Emit.ConstructorBuilder.DeclaringType">
<summary>Retrieves a reference to the <see cref="T:System.Type" /> object for the type that declares this member.</summary>
<returns>Returns the <see cref="T:System.Type" /> object for the type that declares this member.</returns>
</member>
<member name="M:System.Reflection.Emit.ConstructorBuilder.DefineParameter(System.Int32,System.Reflection.ParameterAttributes,System.String)">
<summary>Defines a parameter of this constructor.</summary>
<returns>Returns a ParameterBuilder object that represents the new parameter of this constructor.</returns>
<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>
<param name="attributes">The attributes of the parameter. </param>
<param name="strParamName">The name of the parameter. The name can be the null string. </param>
<exception cref="T:System.ArgumentOutOfRangeException">
<paramref name="iSequence" /> is less than 0 (zero), or it is greater than the number of parameters of the constructor. </exception>
<exception cref="T:System.InvalidOperationException">The containing type has been created using <see cref="M:System.Reflection.Emit.TypeBuilder.CreateType" />. </exception>
</member>
<member name="M:System.Reflection.Emit.ConstructorBuilder.GetILGenerator">
<summary>Gets an <see cref="T:System.Reflection.Emit.ILGenerator" /> for this constructor.</summary>
<returns>Returns an <see cref="T:System.Reflection.Emit.ILGenerator" /> object for this constructor.</returns>
<exception cref="T:System.InvalidOperationException">The constructor is a default constructor.-or-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>
</member>
<member name="M:System.Reflection.Emit.ConstructorBuilder.GetILGenerator(System.Int32)">
<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>
<returns>An <see cref="T:System.Reflection.Emit.ILGenerator" /> for this constructor.</returns>
<param name="streamSize">The size of the MSIL stream, in bytes.</param>
<exception cref="T:System.InvalidOperationException">The constructor is a default constructor.-or-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>
</member>
<member name="M:System.Reflection.Emit.ConstructorBuilder.GetParameters">
<summary>Returns the parameters of this constructor.</summary>
<returns>Returns an array of <see cref="T:System.Reflection.ParameterInfo" /> objects that represent the parameters of this constructor.</returns>
<exception cref="T:System.InvalidOperationException">
<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>
<exception cref="T:System.NotSupportedException">
<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>
</member>
<member name="P:System.Reflection.Emit.ConstructorBuilder.InitLocals">
<summary>Gets or sets whether the local variables in this constructor should be zero-initialized.</summary>
<returns>Read/write. Gets or sets whether the local variables in this constructor should be zero-initialized.</returns>
</member>
<member name="P:System.Reflection.Emit.ConstructorBuilder.MethodImplementationFlags"></member>
<member name="P:System.Reflection.Emit.ConstructorBuilder.Name">
<summary>Retrieves the name of this constructor.</summary>
<returns>Returns the name of this constructor.</returns>
</member>
<member name="M:System.Reflection.Emit.ConstructorBuilder.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" /> or <paramref name="binaryAttribute" /> is null. </exception>
</member>
<member name="M:System.Reflection.Emit.ConstructorBuilder.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="customBuilder" /> is null. </exception>
</member>
<member name="M:System.Reflection.Emit.ConstructorBuilder.SetImplementationFlags(System.Reflection.MethodImplAttributes)">
<summary>Sets the method implementation flags for this constructor.</summary>
<param name="attributes">The method implementation flags. </param>
<exception cref="T:System.InvalidOperationException">The containing type has been created using <see cref="M:System.Reflection.Emit.TypeBuilder.CreateType" />. </exception>
</member>
<member name="M:System.Reflection.Emit.ConstructorBuilder.ToString">
<summary>Returns this <see cref="T:System.Reflection.Emit.ConstructorBuilder" /> instance as a <see cref="T:System.String" />.</summary>
<returns>Returns a <see cref="T:System.String" /> containing the name, attributes, and exceptions of this constructor, followed by the current Microsoft intermediate language (MSIL) stream.</returns>
</member>
<member name="T:System.Reflection.Emit.EnumBuilder">
<summary>Describes and represents an enumeration type.</summary>
</member>
<member name="P:System.Reflection.Emit.EnumBuilder.Assembly">
<summary>Retrieves the dynamic assembly that contains this enum definition.</summary>
<returns>Read-only. The dynamic assembly that contains this enum definition.</returns>
</member>
<member name="P:System.Reflection.Emit.EnumBuilder.AssemblyQualifiedName">
<summary>Returns the full path of this enum qualified by the display name of the parent assembly.</summary>
<returns>Read-only. The full path of this enum qualified by the display name of the parent assembly.</returns>
<exception cref="T:System.NotSupportedException">If <see cref="M:System.Reflection.Emit.EnumBuilder.CreateType" /> has not been called previously. </exception>
</member>
<member name="P:System.Reflection.Emit.EnumBuilder.Attributes"></member>
<member name="P:System.Reflection.Emit.EnumBuilder.BaseType">
<summary>Returns the parent <see cref="T:System.Type" /> of this type which is always <see cref="T:System.Enum" />.</summary>
<returns>Read-only. The parent <see cref="T:System.Type" /> of this type.</returns>
</member>
<member name="P:System.Reflection.Emit.EnumBuilder.ContainsGenericParameters"></member>
<member name="M:System.Reflection.Emit.EnumBuilder.CreateTypeInfo">
<summary>Gets a <see cref="T:System.Reflection.TypeInfo" /> object that represents this enumeration.</summary>
<returns>An object that represents this enumeration.</returns>
</member>
<member name="P:System.Reflection.Emit.EnumBuilder.DeclaringMethod"></member>
<member name="P:System.Reflection.Emit.EnumBuilder.DeclaringType">
<summary>Returns the type that declared this <see cref="T:System.Reflection.Emit.EnumBuilder" />.</summary>
<returns>Read-only. The type that declared this <see cref="T:System.Reflection.Emit.EnumBuilder" />.</returns>
</member>
<member name="M:System.Reflection.Emit.EnumBuilder.DefineLiteral(System.String,System.Object)">
<summary>Defines the named static field in an enumeration type with the specified constant value.</summary>
<returns>The defined field.</returns>
<param name="literalName">The name of the static field. </param>
<param name="literalValue">The constant value of the literal. </param>
</member>
<member name="P:System.Reflection.Emit.EnumBuilder.FullName">
<summary>Returns the full path of this enum.</summary>
<returns>Read-only. The full path of this enum.</returns>
</member>
<member name="P:System.Reflection.Emit.EnumBuilder.GenericParameterAttributes"></member>
<member name="P:System.Reflection.Emit.EnumBuilder.GenericParameterPosition"></member>
<member name="P:System.Reflection.Emit.EnumBuilder.GenericTypeArguments"></member>
<member name="M:System.Reflection.Emit.EnumBuilder.GetArrayRank"></member>
<member name="M:System.Reflection.Emit.EnumBuilder.GetElementType">
<summary>Calling this method always throws <see cref="T:System.NotSupportedException" />.</summary>
<returns>This method is not supported. No value is returned.</returns>
<exception cref="T:System.NotSupportedException">This method is not currently supported. </exception>
</member>
<member name="M:System.Reflection.Emit.EnumBuilder.GetGenericParameterConstraints"></member>
<member name="M:System.Reflection.Emit.EnumBuilder.GetGenericTypeDefinition"></member>
<member name="P:System.Reflection.Emit.EnumBuilder.GUID">
<summary>Returns the GUID of this enum.</summary>
<returns>Read-only. The GUID of this enum.</returns>
<exception cref="T:System.NotSupportedException">This method is not currently supported in types that are not complete. </exception>
</member>
<member name="M:System.Reflection.Emit.EnumBuilder.IsAssignableFrom(System.Reflection.TypeInfo)">
<summary>Gets a value that indicates whether a specified <see cref="T:System.Reflection.TypeInfo" /> object can be assigned to this object.</summary>
<returns>true if <paramref name="typeInfo" /> can be assigned to this object; otherwise, false.</returns>
<param name="typeInfo">The object to test.</param>
</member>
<member name="P:System.Reflection.Emit.EnumBuilder.IsEnum"></member>
<member name="P:System.Reflection.Emit.EnumBuilder.IsGenericParameter"></member>
<member name="P:System.Reflection.Emit.EnumBuilder.IsGenericType"></member>
<member name="P:System.Reflection.Emit.EnumBuilder.IsGenericTypeDefinition"></member>
<member name="P:System.Reflection.Emit.EnumBuilder.IsSerializable"></member>
<member name="M:System.Reflection.Emit.EnumBuilder.MakeArrayType"></member>
<member name="M:System.Reflection.Emit.EnumBuilder.MakeArrayType(System.Int32)">
<exception cref="T:System.IndexOutOfRangeException">
<paramref name="rank" /> is less than 1.</exception>
</member>
<member name="M:System.Reflection.Emit.EnumBuilder.MakeByRefType"></member>
<member name="M:System.Reflection.Emit.EnumBuilder.MakeGenericType(System.Type[])"></member>
<member name="M:System.Reflection.Emit.EnumBuilder.MakePointerType"></member>
<member name="P:System.Reflection.Emit.EnumBuilder.Module">
<summary>Retrieves the dynamic module that contains this <see cref="T:System.Reflection.Emit.EnumBuilder" /> definition.</summary>
<returns>Read-only. The dynamic module that contains this <see cref="T:System.Reflection.Emit.EnumBuilder" /> definition.</returns>
</member>
<member name="P:System.Reflection.Emit.EnumBuilder.Name">
<summary>Returns the name of this enum.</summary>
<returns>Read-only. The name of this enum.</returns>
</member>
<member name="P:System.Reflection.Emit.EnumBuilder.Namespace">
<summary>Returns the namespace of this enum.</summary>
<returns>Read-only. The namespace of this enum.</returns>
</member>
<member name="M:System.Reflection.Emit.EnumBuilder.SetCustomAttribute(System.Reflection.ConstructorInfo,System.Byte[])">
<summary>Sets 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" /> or <paramref name="binaryAttribute" /> is null. </exception>
</member>
<member name="M:System.Reflection.Emit.EnumBuilder.SetCustomAttribute(System.Reflection.Emit.CustomAttributeBuilder)">
<summary>Sets 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" /> is null. </exception>
</member>
<member name="P:System.Reflection.Emit.EnumBuilder.UnderlyingField">
<summary>Returns the underlying field for this enum.</summary>
<returns>Read-only. The underlying field for this enum.</returns>
</member>
<member name="T:System.Reflection.Emit.EventBuilder">
<summary>Defines events for a class.</summary>
</member>
<member name="M:System.Reflection.Emit.EventBuilder.AddOtherMethod(System.Reflection.Emit.MethodBuilder)">
<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>
<param name="mdBuilder">A MethodBuilder object that represents the other method. </param>
<exception cref="T:System.ArgumentNullException">
<paramref name="mdBuilder" /> is null. </exception>
<exception cref="T:System.InvalidOperationException">
<see cref="M:System.Reflection.Emit.TypeBuilder.CreateType" /> has been called on the enclosing type. </exception>
</member>
<member name="M:System.Reflection.Emit.EventBuilder.SetAddOnMethod(System.Reflection.Emit.MethodBuilder)">
<summary>Sets the method used to subscribe to this event.</summary>
<param name="mdBuilder">A MethodBuilder object that represents the method used to subscribe to this event. </param>
<exception cref="T:System.ArgumentNullException">
<paramref name="mdBuilder" /> is null. </exception>
<exception cref="T:System.InvalidOperationException">
<see cref="M:System.Reflection.Emit.TypeBuilder.CreateType" /> has been called on the enclosing type. </exception>
</member>
<member name="M:System.Reflection.Emit.EventBuilder.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" /> or <paramref name="binaryAttribute" /> is null. </exception>
<exception cref="T:System.InvalidOperationException">
<see cref="M:System.Reflection.Emit.TypeBuilder.CreateType" /> has been called on the enclosing type. </exception>
</member>
<member name="M:System.Reflection.Emit.EventBuilder.SetCustomAttribute(System.Reflection.Emit.CustomAttributeBuilder)">
<summary>Sets a custom attribute using a custom attribute builder.</summary>
<param name="customBuilder">An instance of a helper class to describe the custom attribute. </param>
<exception cref="T:System.ArgumentNullException">
<paramref name="con" /> is null. </exception>
<exception cref="T:System.InvalidOperationException">
<see cref="M:System.Reflection.Emit.TypeBuilder.CreateType" /> has been called on the enclosing type. </exception>
</member>
<member name="M:System.Reflection.Emit.EventBuilder.SetRaiseMethod(System.Reflection.Emit.MethodBuilder)">
<summary>Sets the method used to raise this event.</summary>
<param name="mdBuilder">A MethodBuilder object that represents the method used to raise this event. </param>
<exception cref="T:System.ArgumentNullException">
<paramref name="mdBuilder" /> is null. </exception>
<exception cref="T:System.InvalidOperationException">
<see cref="M:System.Reflection.Emit.TypeBuilder.CreateType" /> has been called on the enclosing type. </exception>
</member>
<member name="M:System.Reflection.Emit.EventBuilder.SetRemoveOnMethod(System.Reflection.Emit.MethodBuilder)">
<summary>Sets the method used to unsubscribe to this event.</summary>
<param name="mdBuilder">A MethodBuilder object that represents the method used to unsubscribe to this event. </param>
<exception cref="T:System.ArgumentNullException">
<paramref name="mdBuilder" /> is null. </exception>
<exception cref="T:System.InvalidOperationException">
<see cref="M:System.Reflection.Emit.TypeBuilder.CreateType" /> has been called on the enclosing type. </exception>
</member>
<member name="T:System.Reflection.Emit.FieldBuilder">
<summary>Defines and represents a field. This class cannot be inherited.</summary>
</member>
<member name="P:System.Reflection.Emit.FieldBuilder.Attributes">
<summary>Indicates the attributes of this field. This property is read-only.</summary>
<returns>The attributes of this field.</returns>
</member>
<member name="P:System.Reflection.Emit.FieldBuilder.DeclaringType">
<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>
<returns>A reference to the <see cref="T:System.Type" /> object for the type that declares this field.</returns>
</member>
<member name="P:System.Reflection.Emit.FieldBuilder.FieldType">
<summary>Indicates the <see cref="T:System.Type" /> object that represents the type of this field. This property is read-only.</summary>
<returns>The <see cref="T:System.Type" /> object that represents the type of this field.</returns>
</member>
<member name="M:System.Reflection.Emit.FieldBuilder.GetValue(System.Object)">
<summary>Retrieves the value of the field supported by the given object.</summary>
<returns>An <see cref="T:System.Object" /> containing the value of the field reflected by this instance.</returns>
<param name="obj">The object on which to access the field. </param>
<exception cref="T:System.NotSupportedException">This method is not supported. </exception>
</member>
<member name="P:System.Reflection.Emit.FieldBuilder.Name">
<summary>Indicates the name of this field. This property is read-only.</summary>
<returns>A <see cref="T:System.String" /> containing the name of this field.</returns>
</member>
<member name="M:System.Reflection.Emit.FieldBuilder.SetConstant(System.Object)">
<summary>Sets the default value of this field.</summary>
<param name="defaultValue">The new default value for this field. </param>
<exception cref="T:System.InvalidOperationException">The containing type has been created using <see cref="M:System.Reflection.Emit.TypeBuilder.CreateType" />. </exception>
<exception cref="T:System.ArgumentException">The field is not one of the supported types.-or-The type of <paramref name="defaultValue" /> does not match the type of the field.-or-The field is of type <see cref="T:System.Object" /> or other reference type, <paramref name="defaultValue" /> is not null, and the value cannot be assigned to the reference type.</exception>
</member>
<member name="M:System.Reflection.Emit.FieldBuilder.SetCustomAttribute(System.Reflection.ConstructorInfo,System.Byte[])">
<summary>Sets 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" /> or <paramref name="binaryAttribute" /> is null. </exception>
<exception cref="T:System.InvalidOperationException">The parent type of this field is complete. </exception>
</member>
<member name="M:System.Reflection.Emit.FieldBuilder.SetCustomAttribute(System.Reflection.Emit.CustomAttributeBuilder)">
<summary>Sets 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" /> is null. </exception>
<exception cref="T:System.InvalidOperationException">The parent type of this field is complete. </exception>
</member>
<member name="M:System.Reflection.Emit.FieldBuilder.SetOffset(System.Int32)">
<summary>Specifies the field layout.</summary>
<param name="iOffset">The offset of the field within the type containing this field. </param>
<exception cref="T:System.InvalidOperationException">The containing type has been created using <see cref="M:System.Reflection.Emit.TypeBuilder.CreateType" />. </exception>
<exception cref="T:System.ArgumentException">
<paramref name="iOffset" /> is less than zero.</exception>
</member>
<member name="T:System.Reflection.Emit.GenericTypeParameterBuilder">
<summary>Defines and creates generic type parameters for dynamically defined generic types and methods. This class cannot be inherited. </summary>
</member>
<member name="P:System.Reflection.Emit.GenericTypeParameterBuilder.Assembly">
<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>
<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>
</member>
<member name="P:System.Reflection.Emit.GenericTypeParameterBuilder.AssemblyQualifiedName">
<summary>Gets null in all cases.</summary>
<returns>A null reference (Nothing in Visual Basic) in all cases.</returns>
</member>
<member name="P:System.Reflection.Emit.GenericTypeParameterBuilder.Attributes"></member>
<member name="P:System.Reflection.Emit.GenericTypeParameterBuilder.BaseType">
<summary>Gets the base type constraint of the current generic type parameter.</summary>
<returns>A <see cref="T:System.Type" /> object that represents the base type constraint of the generic type parameter, or null if the type parameter has no base type constraint.</returns>
</member>
<member name="P:System.Reflection.Emit.GenericTypeParameterBuilder.ContainsGenericParameters">
<summary>Gets true in all cases.</summary>
<returns>true in all cases.</returns>
</member>
<member name="P:System.Reflection.Emit.GenericTypeParameterBuilder.DeclaringMethod">
<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>
<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, null.</returns>
</member>
<member name="P:System.Reflection.Emit.GenericTypeParameterBuilder.DeclaringType">
<summary>Gets the generic type definition or generic method definition to which the generic type parameter belongs.</summary>
<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>
</member>
<member name="M:System.Reflection.Emit.GenericTypeParameterBuilder.Equals(System.Object)">
<summary>Tests whether the given object is an instance of EventToken and is equal to the current instance.</summary>
<returns>Returns true if <paramref name="o" /> is an instance of EventToken and equals the current instance; otherwise, false.</returns>
<param name="o">The object to be compared with the current instance.</param>
</member>
<member name="P:System.Reflection.Emit.GenericTypeParameterBuilder.FullName">
<summary>Gets null in all cases.</summary>
<returns>A null reference (Nothing in Visual Basic) in all cases.</returns>
</member>
<member name="P:System.Reflection.Emit.GenericTypeParameterBuilder.GenericParameterAttributes"></member>
<member name="P:System.Reflection.Emit.GenericTypeParameterBuilder.GenericParameterPosition">
<summary>Gets the position of the type parameter in the type parameter list of the generic type or method that declared the parameter.</summary>
<returns>The position of the type parameter in the type parameter list of the generic type or method that declared the parameter.</returns>
</member>
<member name="P:System.Reflection.Emit.GenericTypeParameterBuilder.GenericTypeArguments"></member>
<member name="M:System.Reflection.Emit.GenericTypeParameterBuilder.GetArrayRank"></member>
<member name="M:System.Reflection.Emit.GenericTypeParameterBuilder.GetElementType">
<summary>Throws a <see cref="T:System.NotSupportedException" /> in all cases. </summary>
<returns>The type referred to by the current array type, pointer type, or ByRef type; or null if the current type is not an array type, is not a pointer type, and is not passed by reference.</returns>
<exception cref="T:System.NotSupportedException">In all cases.</exception>
</member>
<member name="M:System.Reflection.Emit.GenericTypeParameterBuilder.GetGenericParameterConstraints"></member>
<member name="M:System.Reflection.Emit.GenericTypeParameterBuilder.GetGenericTypeDefinition">
<summary>Not valid for generic type parameters.</summary>
<returns>Not valid for generic type parameters.</returns>
<exception cref="T:System.InvalidOperationException">In all cases.</exception>
</member>
<member name="M:System.Reflection.Emit.GenericTypeParameterBuilder.GetHashCode">
<summary>Returns a 32-bit integer hash code for the current instance.</summary>
<returns>A 32-bit integer hash code.</returns>
</member>
<member name="P:System.Reflection.Emit.GenericTypeParameterBuilder.GUID">
<summary>Not supported for incomplete generic type parameters.</summary>
<returns>Not supported for incomplete generic type parameters.</returns>
<exception cref="T:System.NotSupportedException">In all cases. </exception>
</member>
<member name="M:System.Reflection.Emit.GenericTypeParameterBuilder.IsAssignableFrom(System.Reflection.TypeInfo)">
<summary>Throws a <see cref="T:System.NotSupportedException" /> exception in all cases.</summary>
<returns>Throws a <see cref="T:System.NotSupportedException" /> exception in all cases.</returns>
<param name="typeInfo">The object to test.</param>
<exception cref="T:System.NotSupportedException">In all cases.</exception>
</member>
<member name="P:System.Reflection.Emit.GenericTypeParameterBuilder.IsEnum"></member>
<member name="P:System.Reflection.Emit.GenericTypeParameterBuilder.IsGenericParameter">
<summary>Gets true in all cases.</summary>
<returns>true in all cases.</returns>
</member>
<member name="P:System.Reflection.Emit.GenericTypeParameterBuilder.IsGenericType">
<summary>Returns false in all cases.</summary>
<returns>false in all cases.</returns>
</member>
<member name="P:System.Reflection.Emit.GenericTypeParameterBuilder.IsGenericTypeDefinition">
<summary>Gets false in all cases.</summary>
<returns>false in all cases.</returns>
</member>
<member name="P:System.Reflection.Emit.GenericTypeParameterBuilder.IsSerializable"></member>
<member name="M:System.Reflection.Emit.GenericTypeParameterBuilder.IsSubclassOf(System.Type)">
<summary>Not supported for incomplete generic type parameters.</summary>
<returns>Not supported for incomplete generic type parameters.</returns>
<param name="c">Not supported.</param>
<exception cref="T:System.NotSupportedException">In all cases.</exception>
</member>
<member name="M:System.Reflection.Emit.GenericTypeParameterBuilder.MakeArrayType">
<summary>Returns the type of a one-dimensional array whose element type is the generic type parameter.</summary>
<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>
</member>
<member name="M:System.Reflection.Emit.GenericTypeParameterBuilder.MakeArrayType(System.Int32)">
<summary>Returns the type of an array whose element type is the generic type parameter, with the specified number of dimensions.</summary>
<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>
<param name="rank">The number of dimensions for the array.</param>
<exception cref="T:System.IndexOutOfRangeException">
<paramref name="rank" /> is not a valid number of dimensions. For example, its value is less than 1.</exception>
</member>
<member name="M:System.Reflection.Emit.GenericTypeParameterBuilder.MakeByRefType">
<summary>Returns a <see cref="T:System.Type" /> object that represents the current generic type parameter when passed as a reference parameter.</summary>
<returns>A <see cref="T:System.Type" /> object that represents the current generic type parameter when passed as a reference parameter.</returns>
</member>
<member name="M:System.Reflection.Emit.GenericTypeParameterBuilder.MakeGenericType(System.Type[])">
<summary>Not valid for incomplete generic type parameters.</summary>
<returns>This method is invalid for incomplete generic type parameters.</returns>
<param name="typeArguments">An array of type arguments.</param>
<exception cref="T:System.InvalidOperationException">In all cases.</exception>
</member>
<member name="M:System.Reflection.Emit.GenericTypeParameterBuilder.MakePointerType">
<summary>Returns a <see cref="T:System.Type" /> object that represents a pointer to the current generic type parameter.</summary>
<returns>A <see cref="T:System.Type" /> object that represents a pointer to the current generic type parameter.</returns>
</member>
<member name="P:System.Reflection.Emit.GenericTypeParameterBuilder.Module">
<summary>Gets the dynamic module that contains the generic type parameter.</summary>
<returns>A <see cref="T:System.Reflection.Module" /> object that represents the dynamic module that contains the generic type parameter.</returns>
</member>
<member name="P:System.Reflection.Emit.GenericTypeParameterBuilder.Name">
<summary>Gets the name of the generic type parameter.</summary>
<returns>The name of the generic type parameter.</returns>
</member>
<member name="P:System.Reflection.Emit.GenericTypeParameterBuilder.Namespace">
<summary>Gets null in all cases.</summary>
<returns>A null reference (Nothing in Visual Basic) in all cases.</returns>
</member>
<member name="M:System.Reflection.Emit.GenericTypeParameterBuilder.SetBaseTypeConstraint(System.Type)">
<summary>Sets the base type that a type must inherit in order to be substituted for the type parameter.</summary>
<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>
</member>
<member name="M:System.Reflection.Emit.GenericTypeParameterBuilder.SetCustomAttribute(System.Reflection.ConstructorInfo,System.Byte[])">
<summary>Sets 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 attribute.</param>
<exception cref="T:System.ArgumentNullException">
<paramref name="con" /> is null.-or-<paramref name="binaryAttribute" /> is a null reference.</exception>
</member>
<member name="M:System.Reflection.Emit.GenericTypeParameterBuilder.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 that defines the custom attribute.</param>
<exception cref="T:System.ArgumentNullException">
<paramref name="customBuilder" /> is null.</exception>
</member>
<member name="M:System.Reflection.Emit.GenericTypeParameterBuilder.SetGenericParameterAttributes(System.Reflection.GenericParameterAttributes)">
<summary>Sets the variance characteristics and special constraints of the generic parameter, such as the parameterless constructor constraint.</summary>
<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>
</member>
<member name="M:System.Reflection.Emit.GenericTypeParameterBuilder.SetInterfaceConstraints(System.Type[])">
<summary>Sets the interfaces a type must implement in order to be substituted for the type parameter. </summary>
<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>
</member>
<member name="M:System.Reflection.Emit.GenericTypeParameterBuilder.ToString">
<summary>Returns a string representation of the current generic type parameter.</summary>
<returns>A string that contains the name of the generic type parameter.</returns>
</member>
<member name="T:System.Reflection.Emit.MethodBuilder">
<summary>Defines and represents a method (or constructor) on a dynamic class.</summary>
</member>
<member name="P:System.Reflection.Emit.MethodBuilder.Attributes">
<summary>Retrieves the attributes for this method.</summary>
<returns>Read-only. Retrieves the MethodAttributes for this method.</returns>
</member>
<member name="P:System.Reflection.Emit.MethodBuilder.CallingConvention">
<summary>Returns the calling convention of the method.</summary>
<returns>Read-only. The calling convention of the method.</returns>
</member>
<member name="P:System.Reflection.Emit.MethodBuilder.ContainsGenericParameters">
<summary>Not supported for this type.</summary>
<returns>Not supported.</returns>
<exception cref="T:System.NotSupportedException">The invoked method is not supported in the base class.</exception>
</member>
<member name="P:System.Reflection.Emit.MethodBuilder.DeclaringType">
<summary>Returns the type that declares this method.</summary>
<returns>Read-only. The type that declares this method.</returns>
</member>
<member name="M:System.Reflection.Emit.MethodBuilder.DefineGenericParameters(System.String[])">
<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>
<returns>An array of <see cref="T:System.Reflection.Emit.GenericTypeParameterBuilder" /> objects representing the type parameters of the generic method.</returns>
<param name="names">An array of strings that represent the names of the generic type parameters.</param>
<exception cref="T:System.InvalidOperationException">Generic type parameters have already been defined for this method.-or-The method has been completed already.-or-The <see cref="M:System.Reflection.Emit.MethodBuilder.SetImplementationFlags(System.Reflection.MethodImplAttributes)" /> method has been called for the current method.</exception>
<exception cref="T:System.ArgumentNullException">
<paramref name="names" /> is null.-or-An element of <paramref name="names" /> is null.</exception>
<exception cref="T:System.ArgumentException">
<paramref name="names" /> is an empty array.</exception>
</member>
<member name="M:System.Reflection.Emit.MethodBuilder.DefineParameter(System.Int32,System.Reflection.ParameterAttributes,System.String)">
<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>
<returns>Returns a ParameterBuilder object that represents a parameter of this method or the return value of this method.</returns>
<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>
<param name="attributes">The parameter attributes of the parameter. </param>
<param name="strParamName">The name of the parameter. The name can be the null string. </param>
<exception cref="T:System.ArgumentOutOfRangeException">The method has no parameters.-or- <paramref name="position" /> is less than zero.-or- <paramref name="position" /> is greater than the number of the method's parameters. </exception>
<exception cref="T:System.InvalidOperationException">The containing type was previously created using <see cref="M:System.Reflection.Emit.TypeBuilder.CreateType" />.-or-For the current method, the <see cref="P:System.Reflection.Emit.MethodBuilder.IsGenericMethod" /> property is true, but the <see cref="P:System.Reflection.Emit.MethodBuilder.IsGenericMethodDefinition" /> property is false. </exception>
</member>
<member name="M:System.Reflection.Emit.MethodBuilder.Equals(System.Object)">
<summary>Determines whether the given object is equal to this instance.</summary>
<returns>true if <paramref name="obj" /> is an instance of MethodBuilder and is equal to this object; otherwise, false.</returns>
<param name="obj">The object to compare with this MethodBuilder instance. </param>
</member>
<member name="M:System.Reflection.Emit.MethodBuilder.GetGenericArguments">
<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>
<returns>An array of <see cref="T:System.Reflection.Emit.GenericTypeParameterBuilder" /> objects representing the type parameters, if the method is generic, or null if the method is not generic. </returns>
</member>
<member name="M:System.Reflection.Emit.MethodBuilder.GetGenericMethodDefinition">
<summary>Returns this method.</summary>
<returns>The current instance of <see cref="T:System.Reflection.Emit.MethodBuilder" />. </returns>
<exception cref="T:System.InvalidOperationException">The current method is not generic. That is, the <see cref="P:System.Reflection.Emit.MethodBuilder.IsGenericMethod" /> property returns false.</exception>
</member>
<member name="M:System.Reflection.Emit.MethodBuilder.GetHashCode">
<summary>Gets the hash code for this method.</summary>
<returns>The hash code for this method.</returns>
</member>
<member name="M:System.Reflection.Emit.MethodBuilder.GetILGenerator">
<summary>Returns an ILGenerator for this method with a default Microsoft intermediate language (MSIL) stream size of 64 bytes.</summary>
<returns>Returns an ILGenerator object for this method.</returns>
<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. -or-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 true, but the <see cref="P:System.Reflection.Emit.MethodBuilder.IsGenericMethodDefinition" /> property is false. </exception>
</member>
<member name="M:System.Reflection.Emit.MethodBuilder.GetILGenerator(System.Int32)">
<summary>Returns an ILGenerator for this method with the specified Microsoft intermediate language (MSIL) stream size.</summary>
<returns>Returns an ILGenerator object for this method.</returns>
<param name="size">The size of the MSIL stream, in bytes. </param>
<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. -or-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 true, but the <see cref="P:System.Reflection.Emit.MethodBuilder.IsGenericMethodDefinition" /> property is false. </exception>
</member>
<member name="M:System.Reflection.Emit.MethodBuilder.GetParameters">
<summary>Returns the parameters of this method.</summary>
<returns>An array of ParameterInfo objects that represent the parameters of the method.</returns>
<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 GetParameters on the returned <see cref="T:System.Reflection.MethodInfo" />. </exception>
</member>
<member name="P:System.Reflection.Emit.MethodBuilder.InitLocals">
<summary>Gets or sets a Boolean value that specifies whether the local variables in this method are zero initialized. The default value of this property is true.</summary>
<returns>true if the local variables in this method should be zero initialized; otherwise false.</returns>
<exception cref="T:System.InvalidOperationException">For the current method, the <see cref="P:System.Reflection.Emit.MethodBuilder.IsGenericMethod" /> property is true, but the <see cref="P:System.Reflection.Emit.MethodBuilder.IsGenericMethodDefinition" /> property is false. (Get or set.)</exception>
</member>
<member name="P:System.Reflection.Emit.MethodBuilder.IsGenericMethod">
<summary>Gets a value indicating whether the method is a generic method.</summary>
<returns>true if the method is generic; otherwise, false.</returns>
</member>
<member name="P:System.Reflection.Emit.MethodBuilder.IsGenericMethodDefinition">
<summary>Gets a value indicating whether the current <see cref="T:System.Reflection.Emit.MethodBuilder" /> object represents the definition of a generic method.</summary>
<returns>true if the current <see cref="T:System.Reflection.Emit.MethodBuilder" /> object represents the definition of a generic method; otherwise, false.</returns>
</member>
<member name="M:System.Reflection.Emit.MethodBuilder.MakeGenericMethod(System.Type[])">
<summary>Returns a generic method constructed from the current generic method definition using the specified generic type arguments.</summary>
<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>
<param name="typeArguments">An array of <see cref="T:System.Type" /> objects that represent the type arguments for the generic method.</param>
</member>
<member name="P:System.Reflection.Emit.MethodBuilder.MethodImplementationFlags"></member>
<member name="P:System.Reflection.Emit.MethodBuilder.Name">
<summary>Retrieves the name of this method.</summary>
<returns>Read-only. Retrieves a string containing the simple name of this method.</returns>
</member>
<member name="P:System.Reflection.Emit.MethodBuilder.ReturnParameter">
<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>
<returns>A <see cref="T:System.Reflection.ParameterInfo" /> object that contains information about the return type.</returns>
<exception cref="T:System.InvalidOperationException">The declaring type has not been created.</exception>
</member>
<member name="P:System.Reflection.Emit.MethodBuilder.ReturnType">
<summary>Gets the return type of the method represented by this <see cref="T:System.Reflection.Emit.MethodBuilder" />.</summary>
<returns>The return type of the method.</returns>
</member>
<member name="M:System.Reflection.Emit.MethodBuilder.SetCustomAttribute(System.Reflection.ConstructorInfo,System.Byte[])">
<summary>Sets 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" /> or <paramref name="binaryAttribute" /> is null. </exception>
<exception cref="T:System.InvalidOperationException">For the current method, the <see cref="P:System.Reflection.Emit.MethodBuilder.IsGenericMethod" /> property is true, but the <see cref="P:System.Reflection.Emit.MethodBuilder.IsGenericMethodDefinition" /> property is false.</exception>
</member>
<member name="M:System.Reflection.Emit.MethodBuilder.SetCustomAttribute(System.Reflection.Emit.CustomAttributeBuilder)">
<summary>Sets a custom attribute using a custom attribute builder.</summary>
<param name="customBuilder">An instance of a helper class to describe the custom attribute. </param>
<exception cref="T:System.ArgumentNullException">
<paramref name="customBuilder" /> is null. </exception>
<exception cref="T:System.InvalidOperationException">For the current method, the <see cref="P:System.Reflection.Emit.MethodBuilder.IsGenericMethod" /> property is true, but the <see cref="P:System.Reflection.Emit.MethodBuilder.IsGenericMethodDefinition" /> property is false.</exception>
</member>
<member name="M:System.Reflection.Emit.MethodBuilder.SetImplementationFlags(System.Reflection.MethodImplAttributes)">
<summary>Sets the implementation flags for this method.</summary>
<param name="attributes">The implementation flags to set. </param>
<exception cref="T:System.InvalidOperationException">The containing type was previously created using <see cref="M:System.Reflection.Emit.TypeBuilder.CreateType" />.-or-For the current method, the <see cref="P:System.Reflection.Emit.MethodBuilder.IsGenericMethod" /> property is true, but the <see cref="P:System.Reflection.Emit.MethodBuilder.IsGenericMethodDefinition" /> property is false. </exception>
</member>
<member name="M:System.Reflection.Emit.MethodBuilder.SetParameters(System.Type[])">
<summary>Sets the number and types of parameters for a method. </summary>
<param name="parameterTypes">An array of <see cref="T:System.Type" /> objects representing the parameter types.</param>
<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 true, but the <see cref="P:System.Reflection.Emit.MethodBuilder.IsGenericMethodDefinition" /> property is false.</exception>
</member>
<member name="M:System.Reflection.Emit.MethodBuilder.SetReturnType(System.Type)">
<summary>Sets the return type of the method.</summary>
<param name="returnType">A <see cref="T:System.Type" /> object that represents the return type of the method.</param>
<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 true, but the <see cref="P:System.Reflection.Emit.MethodBuilder.IsGenericMethodDefinition" /> property is false.</exception>
</member>
<member name="M:System.Reflection.Emit.MethodBuilder.SetSignature(System.Type,System.Type[],System.Type[],System.Type[],System.Type[][],System.Type[][])">
<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>
<param name="returnType">The return type of the method.</param>
<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 null.</param>
<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 null.</param>
<param name="parameterTypes">The types of the parameters of the method.</param>
<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 null instead of an array of types. If none of the parameters have required custom modifiers, specify null instead of an array of arrays.</param>
<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 null instead of an array of types. If none of the parameters have optional custom modifiers, specify null instead of an array of arrays.</param>
<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 true, but the <see cref="P:System.Reflection.Emit.MethodBuilder.IsGenericMethodDefinition" /> property is false.</exception>
</member>
<member name="M:System.Reflection.Emit.MethodBuilder.ToString">
<summary>Returns this MethodBuilder instance as a string.</summary>
<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>
</member>
<member name="T:System.Reflection.Emit.ModuleBuilder">
<summary>Defines and represents a module in a dynamic assembly.</summary>
</member>
<member name="P:System.Reflection.Emit.ModuleBuilder.Assembly">
<summary>Gets the dynamic assembly that defined this instance of <see cref="T:System.Reflection.Emit.ModuleBuilder" />.</summary>
<returns>The dynamic assembly that defined the current dynamic module.</returns>
</member>
<member name="M:System.Reflection.Emit.ModuleBuilder.CreateGlobalFunctions">
<summary>Completes the global function definitions and global data definitions for this dynamic module.</summary>
<exception cref="T:System.InvalidOperationException">This method was called previously. </exception>
</member>
<member name="M:System.Reflection.Emit.ModuleBuilder.DefineEnum(System.String,System.Reflection.TypeAttributes,System.Type)">
<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>
<returns>The defined enumeration.</returns>
<param name="name">The full path of the enumeration type. <paramref name="name" /> cannot contain embedded nulls. </param>
<param name="visibility">The type attributes for the enumeration. The attributes are any bits defined by <see cref="F:System.Reflection.TypeAttributes.VisibilityMask" />. </param>
<param name="underlyingType">The underlying type for the enumeration. This must be a built-in integer type. </param>
<exception cref="T:System.ArgumentException">Attributes other than visibility attributes are provided.-or- An enumeration with the given name exists in the parent assembly of this module.-or- The visibility attributes do not match the scope of the enumeration. For example, <see cref="F:System.Reflection.TypeAttributes.NestedPublic" /> is specified for <paramref name="visibility" />, but the enumeration is not a nested type. </exception>
<exception cref="T:System.ArgumentNullException">
<paramref name="name" /> is null. </exception>
</member>
<member name="M:System.Reflection.Emit.ModuleBuilder.DefineGlobalMethod(System.String,System.Reflection.MethodAttributes,System.Reflection.CallingConventions,System.Type,System.Type[])">
<summary>Defines a global method with the specified name, attributes, calling convention, return type, and parameter types.</summary>
<returns>The defined global method.</returns>
<param name="name">The name of the method. <paramref name="name" /> cannot contain embedded nulls. </param>
<param name="attributes">The attributes of the method. <paramref name="attributes" /> must include <see cref="F:System.Reflection.MethodAttributes.Static" />.</param>
<param name="callingConvention">The calling convention for the method. </param>
<param name="returnType">The return type of the method. </param>
<param name="parameterTypes">The types of the method's parameters. </param>
<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" />.-or-An element in the <see cref="T:System.Type" /> array is null.</exception>
<exception cref="T:System.ArgumentNullException">
<paramref name="name" /> is null. </exception>
<exception cref="T:System.InvalidOperationException">
<see cref="M:System.Reflection.Emit.ModuleBuilder.CreateGlobalFunctions" /> has been previously called. </exception>
</member>
<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[][])">
<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>
<returns>The defined global method.</returns>
<param name="name">The name of the method. <paramref name="name" /> cannot contain embedded null characters. </param>
<param name="attributes">The attributes of the method. <paramref name="attributes" /> must include <see cref="F:System.Reflection.MethodAttributes.Static" />.</param>
<param name="callingConvention">The calling convention for the method. </param>
<param name="returnType">The return type of the method. </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" /> or <see cref="T:System.Runtime.CompilerServices.IsBoxed" />. 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" /> or <see cref="T:System.Runtime.CompilerServices.IsBoxed" />. If the return type has no optional custom modifiers, specify null. </param>
<param name="parameterTypes">The types of the method's parameters. </param>
<param name="requiredParameterTypeCustomModifiers">An array of arrays of types. Each array of types represents the required custom modifiers for the corresponding parameter of the global method. If a particular argument has no required custom modifiers, specify null instead of an array of types. If the global method has no arguments, or if none of the arguments have required custom modifiers, specify null instead of an array of arrays.</param>
<param name="optionalParameterTypeCustomModifiers">An array of arrays of types. Each array of types represents the optional custom modifiers for the corresponding parameter. If a particular argument has no optional custom modifiers, specify null instead of an array of types. If the global method has no arguments, or if none of the arguments have optional custom modifiers, specify null instead of an array of arrays.</param>
<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" />.-or-An element in the <see cref="T:System.Type" /> array is null.</exception>
<exception cref="T:System.ArgumentNullException">
<paramref name="name" /> is null. </exception>
<exception cref="T:System.InvalidOperationException">The <see cref="M:System.Reflection.Emit.ModuleBuilder.CreateGlobalFunctions" /> method has been previously called. </exception>
</member>
<member name="M:System.Reflection.Emit.ModuleBuilder.DefineGlobalMethod(System.String,System.Reflection.MethodAttributes,System.Type,System.Type[])">
<summary>Defines a global method with the specified name, attributes, return type, and parameter types.</summary>
<returns>The defined global method.</returns>
<param name="name">The name of the method. <paramref name="name" /> cannot contain embedded nulls. </param>
<param name="attributes">The attributes of the method. <paramref name="attributes" /> must include <see cref="F:System.Reflection.MethodAttributes.Static" />. </param>
<param name="returnType">The return type of the method. </param>
<param name="parameterTypes">The types of the method's parameters. </param>
<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" />.-or- The length of <paramref name="name" /> is zero -or-An element in the <see cref="T:System.Type" /> array is null.</exception>
<exception cref="T:System.ArgumentNullException">
<paramref name="name" /> is null. </exception>
<exception cref="T:System.InvalidOperationException">
<see cref="M:System.Reflection.Emit.ModuleBuilder.CreateGlobalFunctions" /> has been previously called. </exception>
</member>
<member name="M:System.Reflection.Emit.ModuleBuilder.DefineInitializedData(System.String,System.Byte[],System.Reflection.FieldAttributes)">
<summary>Defines an initialized data field in the .sdata section of the portable executable (PE) file.</summary>
<returns>A field to reference the data.</returns>
<param name="name">The name used to refer to the data. <paramref name="name" /> cannot contain embedded nulls. </param>
<param name="data">The binary large object (BLOB) of data. </param>
<param name="attributes">The attributes for the field. The default is Static. </param>
<exception cref="T:System.ArgumentException">The length of <paramref name="name" /> is zero.-or- The size of <paramref name="data" /> is less than or equal to zero or greater than or equal to 0x3f0000. </exception>
<exception cref="T:System.ArgumentNullException">
<paramref name="name" /> or <paramref name="data" /> is null. </exception>
<exception cref="T:System.InvalidOperationException">
<see cref="M:System.Reflection.Emit.ModuleBuilder.CreateGlobalFunctions" /> has been previously called. </exception>
</member>
<member name="M:System.Reflection.Emit.ModuleBuilder.DefineType(System.String)">
<summary>Constructs a TypeBuilder for a private type with the specified name in this module. </summary>
<returns>A private type with the specified name.</returns>
<param name="name">The full path of the type, including the namespace. <paramref name="name" /> cannot contain embedded nulls. </param>
<exception cref="T:System.ArgumentException">A type with the given name exists in the parent assembly of this module.-or- Nested type attributes are set on a type that is not nested. </exception>
<exception cref="T:System.ArgumentNullException">
<paramref name="name" /> is null. </exception>
</member>
<member name="M:System.Reflection.Emit.ModuleBuilder.DefineType(System.String,System.Reflection.TypeAttributes)">
<summary>Constructs a TypeBuilder given the type name and the type attributes.</summary>
<returns>A TypeBuilder created with all of the requested attributes.</returns>
<param name="name">The full path of the type. <paramref name="name" /> cannot contain embedded nulls. </param>
<param name="attr">The attributes of the defined type. </param>
<exception cref="T:System.ArgumentException">A type with the given name exists in the parent assembly of this module.-or- Nested type attributes are set on a type that is not nested. </exception>
<exception cref="T:System.ArgumentNullException">
<paramref name="name" /> is null. </exception>
</member>
<member name="M:System.Reflection.Emit.ModuleBuilder.DefineType(System.String,System.Reflection.TypeAttributes,System.Type)">
<summary>Constructs a TypeBuilder given type name, its attributes, and the type that the defined type extends.</summary>
<returns>A TypeBuilder created with all of the requested attributes.</returns>
<param name="name">The full path of the type. <paramref name="name" /> cannot contain embedded nulls. </param>
<param name="attr">The attribute to be associated with the type. </param>
<param name="parent">The type that the defined type extends. </param>
<exception cref="T:System.ArgumentException">A type with the given name exists in the parent assembly of this module.-or- Nested type attributes are set on a type that is not nested. </exception>
<exception cref="T:System.ArgumentNullException">
<paramref name="name" /> is null. </exception>
</member>
<member name="M:System.Reflection.Emit.ModuleBuilder.DefineType(System.String,System.Reflection.TypeAttributes,System.Type,System.Int32)">
<summary>Constructs a TypeBuilder given the type name, the attributes, the type that the defined type extends, and the total size of the type.</summary>
<returns>A TypeBuilder object.</returns>
<param name="name">The full path of the type. <paramref name="name" /> cannot contain embedded nulls. </param>
<param name="attr">The attributes of the defined type. </param>
<param name="parent">The type that the defined type extends. </param>
<param name="typesize">The total size of the type. </param>
<exception cref="T:System.ArgumentException">A type with the given name exists in the parent assembly of this module.-or- Nested type attributes are set on a type that is not nested. </exception>
<exception cref="T:System.ArgumentNullException">
<paramref name="name" /> is null. </exception>
</member>
<member name="M:System.Reflection.Emit.ModuleBuilder.DefineType(System.String,System.Reflection.TypeAttributes,System.Type,System.Reflection.Emit.PackingSize)">
<summary>Constructs a TypeBuilder given the type name, the attributes, the type that the defined type extends, and the packing size of the type.</summary>
<returns>A TypeBuilder object.</returns>
<param name="name">The full path of the type. <paramref name="name" /> cannot contain embedded nulls. </param>
<param name="attr">The attributes of the defined type. </param>
<param name="parent">The type that the defined type extends. </param>
<param name="packsize">The packing size of the type. </param>
<exception cref="T:System.ArgumentException">A type with the given name exists in the parent assembly of this module.-or- Nested type attributes are set on a type that is not nested. </exception>
<exception cref="T:System.ArgumentNullException">
<paramref name="name" /> is null. </exception>
</member>
<member name="M:System.Reflection.Emit.ModuleBuilder.DefineType(System.String,System.Reflection.TypeAttributes,System.Type,System.Reflection.Emit.PackingSize,System.Int32)">
<summary>Constructs a TypeBuilder given the type name, attributes, the type that the defined type extends, the packing size of the defined type, and the total size of the defined type.</summary>
<returns>A TypeBuilder created with all of the requested attributes.</returns>
<param name="name">The full path of the type. <paramref name="name" /> cannot contain embedded nulls. </param>
<param name="attr">The attributes of the defined type. </param>
<param name="parent">The type that the defined type extends. </param>
<param name="packingSize">The packing size of the type. </param>
<param name="typesize">The total size of the type. </param>
<exception cref="T:System.ArgumentException">A type with the given name exists in the parent assembly of this module.-or- Nested type attributes are set on a type that is not nested. </exception>
<exception cref="T:System.ArgumentNullException">
<paramref name="name" /> is null. </exception>
</member>
<member name="M:System.Reflection.Emit.ModuleBuilder.DefineType(System.String,System.Reflection.TypeAttributes,System.Type,System.Type[])">
<summary>Constructs a TypeBuilder given the type name, attributes, the type that the defined type extends, and the interfaces that the defined type implements.</summary>
<returns>A TypeBuilder created with all of the requested attributes.</returns>
<param name="name">The full path of the type. <paramref name="name" /> cannot contain embedded nulls. </param>
<param name="attr">The attributes to be associated with the type. </param>
<param name="parent">The type that the defined type extends. </param>
<param name="interfaces">The list of interfaces that the type implements. </param>
<exception cref="T:System.ArgumentException">A type with the given name exists in the parent assembly of this module.-or- Nested type attributes are set on a type that is not nested. </exception>
<exception cref="T:System.ArgumentNullException">
<paramref name="name" /> is null. </exception>
</member>
<member name="M:System.Reflection.Emit.ModuleBuilder.DefineUninitializedData(System.String,System.Int32,System.Reflection.FieldAttributes)">
<summary>Defines an uninitialized data field in the .sdata section of the portable executable (PE) file.</summary>
<returns>A field to reference the data.</returns>
<param name="name">The name used to refer to the data. <paramref name="name" /> cannot contain embedded nulls. </param>
<param name="size">The size of the data field. </param>
<param name="attributes">The attributes for the field. </param>
<exception cref="T:System.ArgumentException">The length of <paramref name="name" /> is zero.-or- <paramref name="size" /> is less than or equal to zero, or greater than or equal to 0x003f0000. </exception>
<exception cref="T:System.ArgumentNullException">
<paramref name="name" /> is null. </exception>
<exception cref="T:System.InvalidOperationException">
<see cref="M:System.Reflection.Emit.ModuleBuilder.CreateGlobalFunctions" /> has been previously called. </exception>
</member>
<member name="M:System.Reflection.Emit.ModuleBuilder.Equals(System.Object)">
<summary>Returns a value that indicates whether this instance is equal to the specified object.</summary>
<returns>true if <paramref name="obj" /> equals the type and value of this instance; otherwise, false.</returns>
<param name="obj">An object to compare with this instance, or null.</param>
</member>
<member name="P:System.Reflection.Emit.ModuleBuilder.FullyQualifiedName">
<summary>Gets a String representing the fully qualified name and path to this module.</summary>
<returns>The fully qualified module name.</returns>
<PermissionSet>
<IPermission class="System.Security.Permissions.FileIOPermission, mscorlib, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" version="1" Unrestricted="true" />
</PermissionSet>
</member>
<member name="M:System.Reflection.Emit.ModuleBuilder.GetArrayMethod(System.Type,System.String,System.Reflection.CallingConventions,System.Type,System.Type[])">
<summary>Returns the named method on an array class.</summary>
<returns>The named method on an array class.</returns>
<param name="arrayClass">An array class. </param>
<param name="methodName">The name of a method on the array class. </param>
<param name="callingConvention">The method's calling convention. </param>
<param name="returnType">The return type of the method. </param>
<param name="parameterTypes">The types of the method's parameters. </param>
<exception cref="T:System.ArgumentException">
<paramref name="arrayClass" /> is not an array. </exception>
<exception cref="T:System.ArgumentNullException">
<paramref name="arrayClass" /> or <paramref name="methodName" /> is null. </exception>
</member>
<member name="M:System.Reflection.Emit.ModuleBuilder.GetHashCode">
<summary>Returns the hash code for this instance.</summary>
<returns>A 32-bit signed integer hash code.</returns>
</member>
<member name="P:System.Reflection.Emit.ModuleBuilder.Name">
<summary>A string that indicates that this is an in-memory module.</summary>
<returns>Text that indicates that this is an in-memory module.</returns>
</member>
<member name="M:System.Reflection.Emit.ModuleBuilder.SetCustomAttribute(System.Reflection.ConstructorInfo,System.Byte[])">
<summary>Applies a custom attribute to this module by using a specified binary large object (BLOB) that represents the attribute.</summary>
<param name="con">The constructor for the custom attribute. </param>
<param name="binaryAttribute">A byte BLOB representing the attribute. </param>
<exception cref="T:System.ArgumentNullException">
<paramref name="con" /> or <paramref name="binaryAttribute" /> is null. </exception>
</member>
<member name="M:System.Reflection.Emit.ModuleBuilder.SetCustomAttribute(System.Reflection.Emit.CustomAttributeBuilder)">
<summary>Applies a custom attribute to this module by using a custom attribute builder.</summary>
<param name="customBuilder">An instance of a helper class that specifies the custom attribute to apply. </param>
<exception cref="T:System.ArgumentNullException">
<paramref name="customBuilder" /> is null. </exception>
</member>
<member name="T:System.Reflection.Emit.PropertyBuilder">
<summary>Defines the properties for a type.</summary>
</member>
<member name="M:System.Reflection.Emit.PropertyBuilder.AddOtherMethod(System.Reflection.Emit.MethodBuilder)">
<summary>Adds one of the other methods associated with this property.</summary>
<param name="mdBuilder">A MethodBuilder object that represents the other method. </param>
<exception cref="T:System.ArgumentNullException">
<paramref name="mdBuilder" /> is null. </exception>
<exception cref="T:System.InvalidOperationException">
<see cref="M:System.Reflection.Emit.TypeBuilder.CreateType" /> has been called on the enclosing type. </exception>
</member>
<member name="P:System.Reflection.Emit.PropertyBuilder.Attributes">
<summary>Gets the attributes for this property.</summary>
<returns>Attributes of this property.</returns>
</member>
<member name="P:System.Reflection.Emit.PropertyBuilder.CanRead">
<summary>Gets a value indicating whether the property can be read.</summary>
<returns>true if this property can be read; otherwise, false.</returns>
</member>
<member name="P:System.Reflection.Emit.PropertyBuilder.CanWrite">
<summary>Gets a value indicating whether the property can be written to.</summary>
<returns>true if this property can be written to; otherwise, false.</returns>
</member>
<member name="P:System.Reflection.Emit.PropertyBuilder.DeclaringType">
<summary>Gets the class that declares this member.</summary>
<returns>The Type object for the class that declares this member.</returns>
</member>
<member name="M:System.Reflection.Emit.PropertyBuilder.GetIndexParameters">
<summary>Returns an array of all the index parameters for the property.</summary>
<returns>An array of type ParameterInfo containing the parameters for the indexes.</returns>
<exception cref="T:System.NotSupportedException">This method is not supported. </exception>
</member>
<member name="M:System.Reflection.Emit.PropertyBuilder.GetValue(System.Object,System.Object[])">
<summary>Gets the value of the indexed property by calling the property's getter method.</summary>
<returns>The value of the specified indexed property.</returns>
<param name="obj">The object whose property value will be returned. </param>
<param name="index">Optional index values for indexed properties. This value should be null for non-indexed properties. </param>
<exception cref="T:System.NotSupportedException">This method is not supported. </exception>
</member>
<member name="P:System.Reflection.Emit.PropertyBuilder.Name">
<summary>Gets the name of this member.</summary>
<returns>A <see cref="T:System.String" /> containing the name of this member.</returns>
</member>
<member name="P:System.Reflection.Emit.PropertyBuilder.PropertyType">
<summary>Gets the type of the field of this property.</summary>
<returns>The type of this property.</returns>
</member>
<member name="M:System.Reflection.Emit.PropertyBuilder.SetConstant(System.Object)">
<summary>Sets the default value of this property.</summary>
<param name="defaultValue">The default value of this property. </param>
<exception cref="T:System.InvalidOperationException">
<see cref="M:System.Reflection.Emit.TypeBuilder.CreateType" /> has been called on the enclosing type. </exception>
<exception cref="T:System.ArgumentException">The property is not one of the supported types.-or-The type of <paramref name="defaultValue" /> does not match the type of the property.-or-The property is of type <see cref="T:System.Object" /> or other reference type, <paramref name="defaultValue" /> is not null, and the value cannot be assigned to the reference type. </exception>
</member>
<member name="M:System.Reflection.Emit.PropertyBuilder.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" /> or <paramref name="binaryAttribute" /> is null. </exception>
<exception cref="T:System.InvalidOperationException">
<see cref="M:System.Reflection.Emit.TypeBuilder.CreateType" /> has been called on the enclosing type. </exception>
</member>
<member name="M:System.Reflection.Emit.PropertyBuilder.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="customBuilder" /> is null. </exception>
<exception cref="T:System.InvalidOperationException">if <see cref="M:System.Reflection.Emit.TypeBuilder.CreateType" /> has been called on the enclosing type. </exception>
</member>
<member name="M:System.Reflection.Emit.PropertyBuilder.SetGetMethod(System.Reflection.Emit.MethodBuilder)">
<summary>Sets the method that gets the property value.</summary>
<param name="mdBuilder">A MethodBuilder object that represents the method that gets the property value. </param>
<exception cref="T:System.ArgumentNullException">
<paramref name="mdBuilder" /> is null. </exception>
<exception cref="T:System.InvalidOperationException">
<see cref="M:System.Reflection.Emit.TypeBuilder.CreateType" /> has been called on the enclosing type. </exception>
</member>
<member name="M:System.Reflection.Emit.PropertyBuilder.SetSetMethod(System.Reflection.Emit.MethodBuilder)">
<summary>Sets the method that sets the property value.</summary>
<param name="mdBuilder">A MethodBuilder object that represents the method that sets the property value. </param>
<exception cref="T:System.ArgumentNullException">
<paramref name="mdBuilder" /> is null. </exception>
<exception cref="T:System.InvalidOperationException">
<see cref="M:System.Reflection.Emit.TypeBuilder.CreateType" /> has been called on the enclosing type. </exception>
</member>
<member name="M:System.Reflection.Emit.PropertyBuilder.SetValue(System.Object,System.Object,System.Object[])">
<summary>Sets the value of the property with optional index values for index properties.</summary>
<param name="obj">The object whose property value will be set. </param>
<param name="value">The new value for this property. </param>
<param name="index">Optional index values for indexed properties. This value should be null for non-indexed properties. </param>
<exception cref="T:System.NotSupportedException">This method is not supported. </exception>
</member>
<member name="T:System.Reflection.Emit.TypeBuilder">
<summary>Defines and creates new instances of classes during run time.</summary>
</member>
<member name="M:System.Reflection.Emit.TypeBuilder.AddInterfaceImplementation(System.Type)">
<summary>Adds an interface that this type implements.</summary>
<param name="interfaceType">The interface that this type implements. </param>
<exception cref="T:System.ArgumentNullException">
<paramref name="interfaceType" /> is null. </exception>
<exception cref="T:System.InvalidOperationException">The type was previously created using <see cref="M:System.Reflection.Emit.TypeBuilder.CreateType" />. </exception>
</member>
<member name="P:System.Reflection.Emit.TypeBuilder.Assembly">
<summary>Retrieves the dynamic assembly that contains this type definition.</summary>
<returns>Read-only. Retrieves the dynamic assembly that contains this type definition.</returns>
</member>
<member name="P:System.Reflection.Emit.TypeBuilder.AssemblyQualifiedName">
<summary>Returns the full name of this type qualified by the display name of the assembly.</summary>
<returns>Read-only. The full name of this type qualified by the display name of the assembly.</returns>
</member>
<member name="P:System.Reflection.Emit.TypeBuilder.Attributes"></member>
<member name="P:System.Reflection.Emit.TypeBuilder.BaseType">
<summary>Retrieves the base type of this type.</summary>
<returns>Read-only. Retrieves the base type of this type.</returns>
</member>
<member name="P:System.Reflection.Emit.TypeBuilder.ContainsGenericParameters"></member>
<member name="M:System.Reflection.Emit.TypeBuilder.CreateTypeInfo">
<summary>Gets a <see cref="T:System.Reflection.TypeInfo" /> object that represents this type.</summary>
<returns>An object that represents this type.</returns>
</member>
<member name="P:System.Reflection.Emit.TypeBuilder.DeclaringMethod">
<summary>Gets the method that declared the current generic type parameter.</summary>
<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, null.</returns>
</member>
<member name="P:System.Reflection.Emit.TypeBuilder.DeclaringType">
<summary>Returns the type that declared this type.</summary>
<returns>Read-only. The type that declared this type.</returns>
</member>
<member name="M:System.Reflection.Emit.TypeBuilder.DefineConstructor(System.Reflection.MethodAttributes,System.Reflection.CallingConventions,System.Type[])">
<summary>Adds a new constructor to the type, with the given attributes and signature.</summary>
<returns>The defined constructor.</returns>
<param name="attributes">The attributes of the constructor. </param>
<param name="callingConvention">The calling convention of the constructor. </param>
<param name="parameterTypes">The parameter types of the constructor. </param>
<exception cref="T:System.InvalidOperationException">The type was previously created using <see cref="M:System.Reflection.Emit.TypeBuilder.CreateType" />. </exception>
</member>
<member name="M:System.Reflection.Emit.TypeBuilder.DefineConstructor(System.Reflection.MethodAttributes,System.Reflection.CallingConventions,System.Type[],System.Type[][],System.Type[][])">
<summary>Adds a new constructor to the type, with the given attributes, signature, and custom modifiers.</summary>
<returns>The defined constructor.</returns>
<param name="attributes">The attributes of the constructor. </param>
<param name="callingConvention">The calling convention of the constructor. </param>
<param name="parameterTypes">The parameter types of the constructor. </param>
<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 null instead of an array of types. If none of the parameters have required custom modifiers, specify null instead of an array of arrays.</param>
<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 null instead of an array of types. If none of the parameters have optional custom modifiers, specify null instead of an array of arrays.</param>
<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>
<exception cref="T:System.InvalidOperationException">The type was previously created using <see cref="M:System.Reflection.Emit.TypeBuilder.CreateType" />.-or-For the current dynamic type, the <see cref="P:System.Reflection.Emit.TypeBuilder.IsGenericType" /> property is true, but the <see cref="P:System.Reflection.Emit.TypeBuilder.IsGenericTypeDefinition" /> property is false.</exception>
</member>
<member name="M:System.Reflection.Emit.TypeBuilder.DefineDefaultConstructor(System.Reflection.MethodAttributes)">
<summary>Defines the default constructor. The constructor defined here will simply call the default constructor of the parent.</summary>
<returns>Returns the constructor.</returns>
<param name="attributes">A MethodAttributes object representing the attributes to be applied to the constructor. </param>
<exception cref="T:System.NotSupportedException">The parent type (base type) does not have a default constructor. </exception>
<exception cref="T:System.InvalidOperationException">The type was previously created using <see cref="M:System.Reflection.Emit.TypeBuilder.CreateType" />.-or-For the current dynamic type, the <see cref="P:System.Reflection.Emit.TypeBuilder.IsGenericType" /> property is true, but the <see cref="P:System.Reflection.Emit.TypeBuilder.IsGenericTypeDefinition" /> property is false.</exception>
</member>
<member name="M:System.Reflection.Emit.TypeBuilder.DefineEvent(System.String,System.Reflection.EventAttributes,System.Type)">
<summary>Adds a new event to the type, with the given name, attributes and event type.</summary>
<returns>The defined event.</returns>
<param name="name">The name of the event. <paramref name="name" /> cannot contain embedded nulls. </param>
<param name="attributes">The attributes of the event. </param>
<param name="eventtype">The type of the event. </param>
<exception cref="T:System.ArgumentException">The length of <paramref name="name" /> is zero. </exception>
<exception cref="T:System.ArgumentNullException">
<paramref name="name" /> is null.-or- <paramref name="eventtype" /> is null. </exception>
<exception cref="T:System.InvalidOperationException">The type was previously created using <see cref="M:System.Reflection.Emit.TypeBuilder.CreateType" />. </exception>
</member>
<member name="M:System.Reflection.Emit.TypeBuilder.DefineField(System.String,System.Type,System.Reflection.FieldAttributes)">
<summary>Adds a new field to the type, with the given name, attributes, and field type.</summary>
<returns>The defined field.</returns>
<param name="fieldName">The name of the field. <paramref name="fieldName" /> cannot contain embedded nulls. </param>
<param name="type">The type of the field </param>
<param name="attributes">The attributes of the field. </param>
<exception cref="T:System.ArgumentException">The length of <paramref name="fieldName" /> is zero.-or- <paramref name="type" /> is System.Void.-or- A total size was specified for the parent class of this field. </exception>
<exception cref="T:System.ArgumentNullException">
<paramref name="fieldName" /> is null. </exception>
<exception cref="T:System.InvalidOperationException">The type was previously created using <see cref="M:System.Reflection.Emit.TypeBuilder.CreateType" />.</exception>
</member>
<member name="M:System.Reflection.Emit.TypeBuilder.DefineField(System.String,System.Type,System.Type[],System.Type[],System.Reflection.FieldAttributes)">
<summary>Adds a new field to the type, with the given name, attributes, field type, and custom modifiers.</summary>
<returns>The defined field.</returns>
<param name="fieldName">The name of the field. <paramref name="fieldName" /> cannot contain embedded nulls. </param>
<param name="type">The type of the field </param>
<param name="requiredCustomModifiers">An array of types representing the required custom modifiers for the field, such as <see cref="T:Microsoft.VisualC.IsConstModifier" />.</param>
<param name="optionalCustomModifiers">An array of types representing the optional custom modifiers for the field, such as <see cref="T:Microsoft.VisualC.IsConstModifier" />.</param>
<param name="attributes">The attributes of the field. </param>
<exception cref="T:System.ArgumentException">The length of <paramref name="fieldName" /> is zero.-or- <paramref name="type" /> is System.Void.-or- A total size was specified for the parent class of this field. </exception>
<exception cref="T:System.ArgumentNullException">
<paramref name="fieldName" /> is null. </exception>
<exception cref="T:System.InvalidOperationException">The type was previously created using <see cref="M:System.Reflection.Emit.TypeBuilder.CreateType" />. </exception>
</member>
<member name="M:System.Reflection.Emit.TypeBuilder.DefineGenericParameters(System.String[])">
<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>
<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>
<param name="names">An array of names for the generic type parameters.</param>
<exception cref="T:System.InvalidOperationException">Generic type parameters have already been defined for this type.</exception>
<exception cref="T:System.ArgumentNullException">
<paramref name="names" /> is null.-or-An element of <paramref name="names" /> is null.</exception>
<exception cref="T:System.ArgumentException">
<paramref name="names" /> is an empty array.</exception>
</member>
<member name="M:System.Reflection.Emit.TypeBuilder.DefineInitializedData(System.String,System.Byte[],System.Reflection.FieldAttributes)">
<summary>Defines initialized data field in the .sdata section of the portable executable (PE) file.</summary>
<returns>A field to reference the data.</returns>
<param name="name">The name used to refer to the data. <paramref name="name" /> cannot contain embedded nulls. </param>
<param name="data">The blob of data. </param>
<param name="attributes">The attributes for the field. </param>
<exception cref="T:System.ArgumentException">Length of <paramref name="name" /> is zero.-or- The size of the data is less than or equal to zero, or greater than or equal to 0x3f0000. </exception>
<exception cref="T:System.ArgumentNullException">
<paramref name="name" /> or <paramref name="data" /> is null. </exception>
<exception cref="T:System.InvalidOperationException">
<see cref="M:System.Reflection.Emit.TypeBuilder.CreateType" /> has been previously called. </exception>
</member>
<member name="M:System.Reflection.Emit.TypeBuilder.DefineMethod(System.String,System.Reflection.MethodAttributes)">
<summary>Adds a new method to the type, with the specified name and method attributes.</summary>
<returns>A <see cref="T:System.Reflection.Emit.MethodBuilder" /> representing the newly defined method.</returns>
<param name="name">The name of the method. <paramref name="name" /> cannot contain embedded nulls. </param>
<param name="attributes">The attributes of the method. </param>
<exception cref="T:System.ArgumentException">The length of <paramref name="name" /> is zero.-or- The type of the parent of this method is an interface, and this method is not virtual (Overridable in Visual Basic). </exception>
<exception cref="T:System.ArgumentNullException">
<paramref name="name" /> is null. </exception>
<exception cref="T:System.InvalidOperationException">The type was previously created using <see cref="M:System.Reflection.Emit.TypeBuilder.CreateType" />.-or-For the current dynamic type, the <see cref="P:System.Reflection.Emit.TypeBuilder.IsGenericType" /> property is true, but the <see cref="P:System.Reflection.Emit.TypeBuilder.IsGenericTypeDefinition" /> property is false. </exception>
</member>
<member name="M:System.Reflection.Emit.TypeBuilder.DefineMethod(System.String,System.Reflection.MethodAttributes,System.Reflection.CallingConventions)">
<summary>Adds a new method to the type, with the specified name, method attributes, and calling convention.</summary>
<returns>A <see cref="T:System.Reflection.Emit.MethodBuilder" /> representing the newly defined method.</returns>
<param name="name">The name of the method. <paramref name="name" /> cannot contain embedded nulls. </param>
<param name="attributes">The attributes of the method. </param>
<param name="callingConvention">The calling convention of the method. </param>
<exception cref="T:System.ArgumentException">The length of <paramref name="name" /> is zero.-or- The type of the parent of this method is an interface and this method is not virtual (Overridable in Visual Basic). </exception>
<exception cref="T:System.ArgumentNullException">
<paramref name="name" /> is null. </exception>
<exception cref="T:System.InvalidOperationException">The type was previously created using <see cref="M:System.Reflection.Emit.TypeBuilder.CreateType" />.-or-For the current dynamic type, the <see cref="P:System.Reflection.Emit.TypeBuilder.IsGenericType" /> property is true, but the <see cref="P:System.Reflection.Emit.TypeBuilder.IsGenericTypeDefinition" /> property is false. </exception>
</member>
<member name="M:System.Reflection.Emit.TypeBuilder.DefineMethod(System.String,System.Reflection.MethodAttributes,System.Reflection.CallingConventions,System.Type,System.Type[])">
<summary>Adds a new method to the type, with the specified name, method attributes, calling convention, and method signature.</summary>
<returns>A <see cref="T:System.Reflection.Emit.MethodBuilder" /> representing the newly defined method.</returns>
<param name="name">The name of the method. <paramref name="name" /> cannot contain embedded nulls. </param>
<param name="attributes">The attributes of the method. </param>
<param name="callingConvention">The calling convention of the method. </param>
<param name="returnType">The return type of the method. </param>
<param name="parameterTypes">The types of the parameters of the method. </param>
<exception cref="T:System.ArgumentException">The length of <paramref name="name" /> is zero.-or- The type of the parent of this method is an interface, and this method is not virtual (Overridable in Visual Basic). </exception>
<exception cref="T:System.ArgumentNullException">
<paramref name="name" /> is null. </exception>
<exception cref="T:System.InvalidOperationException">The type was previously created using <see cref="M:System.Reflection.Emit.TypeBuilder.CreateType" />.-or-For the current dynamic type, the <see cref="P:System.Reflection.Emit.TypeBuilder.IsGenericType" /> property is true, but the <see cref="P:System.Reflection.Emit.TypeBuilder.IsGenericTypeDefinition" /> property is false. </exception>
</member>
<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[][])">
<summary>Adds a new method to the type, with the specified name, method attributes, calling convention, method signature, and custom modifiers.</summary>
<returns>A <see cref="T:System.Reflection.Emit.MethodBuilder" /> object representing the newly added method.</returns>
<param name="name">The name of the method. <paramref name="name" /> cannot contain embedded nulls. </param>
<param name="attributes">The attributes of the method. </param>
<param name="callingConvention">The calling convention of the method. </param>
<param name="returnType">The return type of the method. </param>
<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 null.</param>
<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 null.</param>
<param name="parameterTypes">The types of the parameters of the method.</param>
<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 null instead of an array of types. If none of the parameters have required custom modifiers, specify null instead of an array of arrays.</param>
<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 null instead of an array of types. If none of the parameters have optional custom modifiers, specify null instead of an array of arrays.</param>
<exception cref="T:System.ArgumentException">The length of <paramref name="name" /> is zero.-or- The type of the parent of this method is an interface, and this method is not virtual (Overridable in Visual Basic). -or-The size of <paramref name="parameterTypeRequiredCustomModifiers" /> or <paramref name="parameterTypeOptionalCustomModifiers" /> does not equal the size of <paramref name="parameterTypes" />.</exception>
<exception cref="T:System.ArgumentNullException">
<paramref name="name" /> is null. </exception>
<exception cref="T:System.InvalidOperationException">The type was previously created using <see cref="M:System.Reflection.Emit.TypeBuilder.CreateType" />.-or-For the current dynamic type, the <see cref="P:System.Reflection.Emit.TypeBuilder.IsGenericType" /> property is true, but the <see cref="P:System.Reflection.Emit.TypeBuilder.IsGenericTypeDefinition" /> property is false.</exception>
</member>
<member name="M:System.Reflection.Emit.TypeBuilder.DefineMethod(System.String,System.Reflection.MethodAttributes,System.Type,System.Type[])">
<summary>Adds a new method to the type, with the specified name, method attributes, and method signature.</summary>
<returns>The defined method.</returns>
<param name="name">The name of the method. <paramref name="name" /> cannot contain embedded nulls. </param>
<param name="attributes">The attributes of the method. </param>
<param name="returnType">The return type of the method. </param>
<param name="parameterTypes">The types of the parameters of the method. </param>
<exception cref="T:System.ArgumentException">The length of <paramref name="name" /> is zero.-or- The type of the parent of this method is an interface, and this method is not virtual (Overridable in Visual Basic). </exception>
<exception cref="T:System.ArgumentNullException">
<paramref name="name" /> is null. </exception>
<exception cref="T:System.InvalidOperationException">The type was previously created using <see cref="M:System.Reflection.Emit.TypeBuilder.CreateType" />.-or-For the current dynamic type, the <see cref="P:System.Reflection.Emit.TypeBuilder.IsGenericType" /> property is true, but the <see cref="P:System.Reflection.Emit.TypeBuilder.IsGenericTypeDefinition" /> property is false. </exception>
</member>
<member name="M:System.Reflection.Emit.TypeBuilder.DefineMethodOverride(System.Reflection.MethodInfo,System.Reflection.MethodInfo)">
<summary>Specifies a given method body that implements a given method declaration, potentially with a different name.</summary>
<param name="methodInfoBody">The method body to be used. This should be a MethodBuilder object. </param>
<param name="methodInfoDeclaration">The method whose declaration is to be used. </param>
<exception cref="T:System.ArgumentException">
<paramref name="methodInfoBody" /> does not belong to this class. </exception>
<exception cref="T:System.ArgumentNullException">
<paramref name="methodInfoBody" /> or <paramref name="methodInfoDeclaration" /> is null. </exception>
<exception cref="T:System.InvalidOperationException">The type was previously created using <see cref="M:System.Reflection.Emit.TypeBuilder.CreateType" />.-or- The declaring type of <paramref name="methodInfoBody" /> is not the type represented by this <see cref="T:System.Reflection.Emit.TypeBuilder" />. </exception>
</member>
<member name="M:System.Reflection.Emit.TypeBuilder.DefineNestedType(System.String)">
<summary>Defines a nested type, given its name.</summary>
<returns>The defined nested type.</returns>
<param name="name">The short name of the type. <paramref name="name" /> cannot contain embedded nulls. </param>
<exception cref="T:System.ArgumentException">Length of <paramref name="name" /> is zero or greater than 1023. -or-This operation would create a type with a duplicate <see cref="P:System.Reflection.Emit.TypeBuilder.FullName" /> in the current assembly.</exception>
<exception cref="T:System.ArgumentNullException">
<paramref name="name" /> is null. </exception>
</member>
<member name="M:System.Reflection.Emit.TypeBuilder.DefineNestedType(System.String,System.Reflection.TypeAttributes)">
<summary>Defines a nested type, given its name and attributes.</summary>
<returns>The defined nested type.</returns>
<param name="name">The short name of the type. <paramref name="name" /> cannot contain embedded nulls. </param>
<param name="attr">The attributes of the type. </param>
<exception cref="T:System.ArgumentException">The nested attribute is not specified.-or- This type is sealed.-or- This type is an array.-or- This type is an interface, but the nested type is not an interface.-or- The length of <paramref name="name" /> is zero or greater than 1023. -or-This operation would create a type with a duplicate <see cref="P:System.Reflection.Emit.TypeBuilder.FullName" /> in the current assembly.</exception>
<exception cref="T:System.ArgumentNullException">
<paramref name="name" /> is null. </exception>
</member>
<member name="M:System.Reflection.Emit.TypeBuilder.DefineNestedType(System.String,System.Reflection.TypeAttributes,System.Type)">
<summary>Defines a nested type, given its name, attributes, and the type that it extends.</summary>
<returns>The defined nested type.</returns>
<param name="name">The short name of the type. <paramref name="name" /> cannot contain embedded nulls. </param>
<param name="attr">The attributes of the type. </param>
<param name="parent">The type that the nested type extends. </param>
<exception cref="T:System.ArgumentException">The nested attribute is not specified.-or- This type is sealed.-or- This type is an array.-or- This type is an interface, but the nested type is not an interface.-or- The length of <paramref name="name" /> is zero or greater than 1023. -or-This operation would create a type with a duplicate <see cref="P:System.Reflection.Emit.TypeBuilder.FullName" /> in the current assembly.</exception>
<exception cref="T:System.ArgumentNullException">
<paramref name="name" /> is null. </exception>
</member>
<member name="M:System.Reflection.Emit.TypeBuilder.DefineNestedType(System.String,System.Reflection.TypeAttributes,System.Type,System.Int32)">
<summary>Defines a nested type, given its name, attributes, the total size of the type, and the type that it extends.</summary>
<returns>The defined nested type.</returns>
<param name="name">The short name of the type. <paramref name="name" /> cannot contain embedded nulls. </param>
<param name="attr">The attributes of the type. </param>
<param name="parent">The type that the nested type extends. </param>
<param name="typeSize">The total size of the type. </param>
<exception cref="T:System.ArgumentException">The nested attribute is not specified.-or- This type is sealed.-or- This type is an array.-or- This type is an interface, but the nested type is not an interface.-or- The length of <paramref name="name" /> is zero or greater than 1023. -or-This operation would create a type with a duplicate <see cref="P:System.Reflection.Emit.TypeBuilder.FullName" /> in the current assembly.</exception>
<exception cref="T:System.ArgumentNullException">
<paramref name="name" /> is null. </exception>
</member>
<member name="M:System.Reflection.Emit.TypeBuilder.DefineNestedType(System.String,System.Reflection.TypeAttributes,System.Type,System.Reflection.Emit.PackingSize)">
<summary>Defines a nested type, given its name, attributes, the type that it extends, and the packing size.</summary>
<returns>The defined nested type.</returns>
<param name="name">The short name of the type. <paramref name="name" /> cannot contain embedded nulls. </param>
<param name="attr">The attributes of the type. </param>
<param name="parent">The type that the nested type extends. </param>
<param name="packSize">The packing size of the type. </param>
<exception cref="T:System.ArgumentException">The nested attribute is not specified.-or- This type is sealed.-or- This type is an array.-or- This type is an interface, but the nested type is not an interface.-or- The length of <paramref name="name" /> is zero or greater than 1023. -or-This operation would create a type with a duplicate <see cref="P:System.Reflection.Emit.TypeBuilder.FullName" /> in the current assembly.</exception>
<exception cref="T:System.ArgumentNullException">
<paramref name="name" /> is null. </exception>
</member>
<member name="M:System.Reflection.Emit.TypeBuilder.DefineNestedType(System.String,System.Reflection.TypeAttributes,System.Type,System.Reflection.Emit.PackingSize,System.Int32)">
<summary>Defines a nested type, given its name, attributes, size, and the type that it extends.</summary>
<returns>The defined nested type.</returns>
<param name="name">The short name of the type. <paramref name="name" /> cannot contain embedded null values.</param>
<param name="attr">The attributes of the type.</param>
<param name="parent">The type that the nested type extends.</param>
<param name="packSize">The packing size of the type.</param>
<param name="typeSize">The total size of the type.</param>
</member>
<member name="M:System.Reflection.Emit.TypeBuilder.DefineNestedType(System.String,System.Reflection.TypeAttributes,System.Type,System.Type[])">
<summary>Defines a nested type, given its name, attributes, the type that it extends, and the interfaces that it implements.</summary>
<returns>The defined nested type.</returns>
<param name="name">The short name of the type. <paramref name="name" /> cannot contain embedded nulls. </param>
<param name="attr">The attributes of the type. </param>
<param name="parent">The type that the nested type extends. </param>
<param name="interfaces">The interfaces that the nested type implements. </param>
<exception cref="T:System.ArgumentException">The nested attribute is not specified.-or- This type is sealed.-or- This type is an array.-or- This type is an interface, but the nested type is not an interface.-or- The length of <paramref name="name" /> is zero or greater than 1023. -or-This operation would create a type with a duplicate <see cref="P:System.Reflection.Emit.TypeBuilder.FullName" /> in the current assembly.</exception>
<exception cref="T:System.ArgumentNullException">
<paramref name="name" /> is null.-or-An element of the <paramref name="interfaces" /> array is null.</exception>
</member>
<member name="M:System.Reflection.Emit.TypeBuilder.DefineProperty(System.String,System.Reflection.PropertyAttributes,System.Reflection.CallingConventions,System.Type,System.Type[])">
<summary>Adds a new property to the type, with the given name, attributes, calling convention, and property signature.</summary>
<returns>The defined property.</returns>
<param name="name">The name of the property. <paramref name="name" /> cannot contain embedded nulls. </param>
<param name="attributes">The attributes of the property. </param>
<param name="callingConvention">The calling convention of the property accessors. </param>
<param name="returnType">The return type of the property. </param>
<param name="parameterTypes">The types of the parameters of the property.</param>
<exception cref="T:System.ArgumentException">The length of <paramref name="name" /> is zero. </exception>
<exception cref="T:System.ArgumentNullException">
<paramref name="name" /> is null. -or- Any of the elements of the <paramref name="parameterTypes" /> array is null. </exception>
<exception cref="T:System.InvalidOperationException">The type was previously created using <see cref="M:System.Reflection.Emit.TypeBuilder.CreateType" />. </exception>
</member>
<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[][])">
<summary>Adds a new property to the type, with the given name, calling convention, property signature, and custom modifiers.</summary>
<returns>The defined property.</returns>
<param name="name">The name of the property. <paramref name="name" /> cannot contain embedded nulls. </param>
<param name="attributes">The attributes of the property. </param>
<param name="callingConvention">The calling convention of the property accessors. </param>
<param name="returnType">The return type of the property. </param>
<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 null.</param>
<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 null.</param>
<param name="parameterTypes">The types of the parameters of the property. </param>
<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 null instead of an array of types. If none of the parameters have required custom modifiers, specify null instead of an array of arrays.</param>
<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 null instead of an array of types. If none of the parameters have optional custom modifiers, specify null instead of an array of arrays.</param>
<exception cref="T:System.ArgumentException">The length of <paramref name="name" /> is zero. </exception>
<exception cref="T:System.ArgumentNullException">
<paramref name="name" /> is null. -or- Any of the elements of the <paramref name="parameterTypes" /> array is null. </exception>
<exception cref="T:System.InvalidOperationException">The type was previously created using <see cref="M:System.Reflection.Emit.TypeBuilder.CreateType" />. </exception>
</member>
<member name="M:System.Reflection.Emit.TypeBuilder.DefineProperty(System.String,System.Reflection.PropertyAttributes,System.Type,System.Type[])">
<summary>Adds a new property to the type, with the given name and property signature.</summary>
<returns>The defined property.</returns>
<param name="name">The name of the property. <paramref name="name" /> cannot contain embedded nulls. </param>
<param name="attributes">The attributes of the property. </param>
<param name="returnType">The return type of the property. </param>
<param name="parameterTypes">The types of the parameters of the property. </param>
<exception cref="T:System.ArgumentException">The length of <paramref name="name" /> is zero. </exception>
<exception cref="T:System.ArgumentNullException">
<paramref name="name" /> is null. -or- Any of the elements of the <paramref name="parameterTypes" /> array is null. </exception>
<exception cref="T:System.InvalidOperationException">The type was previously created using <see cref="M:System.Reflection.Emit.TypeBuilder.CreateType" />. </exception>
</member>
<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[][])">
<summary>Adds a new property to the type, with the given name, property signature, and custom modifiers.</summary>
<returns>The defined property.</returns>
<param name="name">The name of the property. <paramref name="name" /> cannot contain embedded nulls. </param>
<param name="attributes">The attributes of the property. </param>
<param name="returnType">The return type of the property. </param>
<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 null.</param>
<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 null.</param>
<param name="parameterTypes">The types of the parameters of the property. </param>
<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 null instead of an array of types. If none of the parameters have required custom modifiers, specify null instead of an array of arrays.</param>
<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 null instead of an array of types. If none of the parameters have optional custom modifiers, specify null instead of an array of arrays.</param>
<exception cref="T:System.ArgumentException">The length of <paramref name="name" /> is zero. </exception>
<exception cref="T:System.ArgumentNullException">
<paramref name="name" /> is null-or- Any of the elements of the <paramref name="parameterTypes" /> array is null</exception>
<exception cref="T:System.InvalidOperationException">The type was previously created using <see cref="M:System.Reflection.Emit.TypeBuilder.CreateType" />. </exception>
</member>
<member name="M:System.Reflection.Emit.TypeBuilder.DefineTypeInitializer">
<summary>Defines the initializer for this type.</summary>
<returns>Returns a type initializer.</returns>
<exception cref="T:System.InvalidOperationException">The containing type has been previously created using <see cref="M:System.Reflection.Emit.TypeBuilder.CreateType" />. </exception>
</member>
<member name="M:System.Reflection.Emit.TypeBuilder.DefineUninitializedData(System.String,System.Int32,System.Reflection.FieldAttributes)">
<summary>Defines an uninitialized data field in the .sdata section of the portable executable (PE) file.</summary>
<returns>A field to reference the data.</returns>
<param name="name">The name used to refer to the data. <paramref name="name" /> cannot contain embedded nulls. </param>
<param name="size">The size of the data field. </param>
<param name="attributes">The attributes for the field. </param>
<exception cref="T:System.ArgumentException">Length of <paramref name="name" /> is zero.-or- <paramref name="size" /> is less than or equal to zero, or greater than or equal to 0x003f0000. </exception>
<exception cref="T:System.ArgumentNullException">
<paramref name="name" /> is null. </exception>
<exception cref="T:System.InvalidOperationException">The type was previously created using <see cref="M:System.Reflection.Emit.TypeBuilder.CreateType" />. </exception>
</member>
<member name="P:System.Reflection.Emit.TypeBuilder.FullName">
<summary>Retrieves the full path of this type.</summary>
<returns>Read-only. Retrieves the full path of this type.</returns>
</member>
<member name="P:System.Reflection.Emit.TypeBuilder.GenericParameterAttributes">
<summary>Gets a value that indicates the covariance and special constraints of the current generic type parameter. </summary>
<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>
</member>
<member name="P:System.Reflection.Emit.TypeBuilder.GenericParameterPosition">
<summary>Gets the position of a type parameter in the type parameter list of the generic type that declared the parameter.</summary>
<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>
</member>
<member name="P:System.Reflection.Emit.TypeBuilder.GenericTypeArguments"></member>
<member name="M:System.Reflection.Emit.TypeBuilder.GetArrayRank"></member>
<member name="M:System.Reflection.Emit.TypeBuilder.GetConstructor(System.Type,System.Reflection.ConstructorInfo)">
<summary>Returns the constructor of the specified constructed generic type that corresponds to the specified constructor of the generic type definition. </summary>
<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>
<param name="type">The constructed generic type whose constructor is returned.</param>
<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>
<exception cref="T:System.ArgumentException">
<paramref name="type" /> does not represent a generic type. -or-<paramref name="type" /> is not of type <see cref="T:System.Reflection.Emit.TypeBuilder" />.-or-The declaring type of <paramref name="constructor" /> is not a generic type definition. -or-The declaring type of <paramref name="constructor" /> is not the generic type definition of <paramref name="type" />.</exception>
</member>
<member name="M:System.Reflection.Emit.TypeBuilder.GetElementType">
<summary>Calling this method always throws <see cref="T:System.NotSupportedException" />.</summary>
<returns>This method is not supported. No value is returned.</returns>
<exception cref="T:System.NotSupportedException">This method is not supported. </exception>
</member>
<member name="M:System.Reflection.Emit.TypeBuilder.GetField(System.Type,System.Reflection.FieldInfo)">
<summary>Returns the field of the specified constructed generic type that corresponds to the specified field of the generic type definition. </summary>
<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>
<param name="type">The constructed generic type whose field is returned.</param>
<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>
<exception cref="T:System.ArgumentException">
<paramref name="type" /> does not represent a generic type. -or-<paramref name="type" /> is not of type <see cref="T:System.Reflection.Emit.TypeBuilder" />.-or-The declaring type of <paramref name="field" /> is not a generic type definition. -or-The declaring type of <paramref name="field" /> is not the generic type definition of <paramref name="type" />.</exception>
</member>
<member name="M:System.Reflection.Emit.TypeBuilder.GetGenericParameterConstraints"></member>
<member name="M:System.Reflection.Emit.TypeBuilder.GetGenericTypeDefinition">
<summary>Returns a <see cref="T:System.Type" /> object that represents a generic type definition from which the current type can be obtained.</summary>
<returns>A <see cref="T:System.Type" /> object representing a generic type definition from which the current type can be obtained.</returns>
<exception cref="T:System.InvalidOperationException">The current type is not generic. That is, <see cref="P:System.Reflection.Emit.TypeBuilder.IsGenericType" /> returns false.</exception>
</member>
<member name="M:System.Reflection.Emit.TypeBuilder.GetMethod(System.Type,System.Reflection.MethodInfo)">
<summary>Returns the method of the specified constructed generic type that corresponds to the specified method of the generic type definition. </summary>
<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>
<param name="type">The constructed generic type whose method is returned.</param>
<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>
<exception cref="T:System.ArgumentException">
<paramref name="method" /> is a generic method that is not a generic method definition.-or-<paramref name="type" /> does not represent a generic type.-or-<paramref name="type" /> is not of type <see cref="T:System.Reflection.Emit.TypeBuilder" />.-or-The declaring type of <paramref name="method" /> is not a generic type definition. -or-The declaring type of <paramref name="method" /> is not the generic type definition of <paramref name="type" />.</exception>
</member>
<member name="P:System.Reflection.Emit.TypeBuilder.GUID">
<summary>Retrieves the GUID of this type.</summary>
<returns>Read-only. Retrieves the GUID of this type </returns>
<exception cref="T:System.NotSupportedException">This method is not currently supported for incomplete types. </exception>
</member>
<member name="M:System.Reflection.Emit.TypeBuilder.IsAssignableFrom(System.Reflection.TypeInfo)">
<summary>Gets a value that indicates whether a specified <see cref="T:System.Reflection.TypeInfo" /> object can be assigned to this object.</summary>
<returns>true if <paramref name="typeInfo" /> can be assigned to this object; otherwise, false.</returns>
<param name="typeInfo">The object to test.</param>
</member>
<member name="M:System.Reflection.Emit.TypeBuilder.IsCreated">
<summary>Returns a value that indicates whether the current dynamic type has been created.</summary>
<returns>true if the <see cref="M:System.Reflection.Emit.TypeBuilder.CreateType" /> method has been called; otherwise, false. </returns>
</member>
<member name="P:System.Reflection.Emit.TypeBuilder.IsEnum"></member>
<member name="P:System.Reflection.Emit.TypeBuilder.IsGenericParameter">
<summary>Gets a value indicating whether the current type is a generic type parameter.</summary>
<returns>true if the current <see cref="T:System.Reflection.Emit.TypeBuilder" /> object represents a generic type parameter; otherwise, false.</returns>
</member>
<member name="P:System.Reflection.Emit.TypeBuilder.IsGenericType">
<summary>Gets a value indicating whether the current type is a generic type. </summary>
<returns>true if the type represented by the current <see cref="T:System.Reflection.Emit.TypeBuilder" /> object is generic; otherwise, false.</returns>
</member>
<member name="P:System.Reflection.Emit.TypeBuilder.IsGenericTypeDefinition">
<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>
<returns>true if this <see cref="T:System.Reflection.Emit.TypeBuilder" /> object represents a generic type definition; otherwise, false.</returns>
</member>
<member name="P:System.Reflection.Emit.TypeBuilder.IsSerializable"></member>
<member name="M:System.Reflection.Emit.TypeBuilder.MakeArrayType">
<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>
<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>
</member>
<member name="M:System.Reflection.Emit.TypeBuilder.MakeArrayType(System.Int32)">
<summary>Returns a <see cref="T:System.Type" /> object that represents an array of the current type, with the specified number of dimensions.</summary>
<returns>A <see cref="T:System.Type" /> object that represents a one-dimensional array of the current type.</returns>
<param name="rank">The number of dimensions for the array. </param>
<exception cref="T:System.IndexOutOfRangeException">
<paramref name="rank" /> is not a valid array dimension.</exception>
</member>
<member name="M:System.Reflection.Emit.TypeBuilder.MakeByRefType">
<summary>Returns a <see cref="T:System.Type" /> object that represents the current type when passed as a ref parameter (ByRef in Visual Basic).</summary>
<returns>A <see cref="T:System.Type" /> object that represents the current type when passed as a ref parameter (ByRef in Visual Basic).</returns>
</member>
<member name="M:System.Reflection.Emit.TypeBuilder.MakeGenericType(System.Type[])">
<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>
<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>
<param name="typeArguments">An array of types to be substituted for the type parameters of the current generic type definition.</param>
<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 false. </exception>
<exception cref="T:System.ArgumentNullException">
<paramref name="typeArguments" /> is null.-or- Any element of <paramref name="typeArguments" /> is null. </exception>
<exception cref="T:System.ArgumentException">Any element of <paramref name="typeArguments" /> does not satisfy the constraints specified for the corresponding type parameter of the current generic type. </exception>
</member>
<member name="M:System.Reflection.Emit.TypeBuilder.MakePointerType">
<summary>Returns a <see cref="T:System.Type" /> object that represents the type of an unmanaged pointer to the current type.</summary>
<returns>A <see cref="T:System.Type" /> object that represents the type of an unmanaged pointer to the current type.</returns>
</member>
<member name="P:System.Reflection.Emit.TypeBuilder.Module">
<summary>Retrieves the dynamic module that contains this type definition.</summary>
<returns>Read-only. Retrieves the dynamic module that contains this type definition.</returns>
</member>
<member name="P:System.Reflection.Emit.TypeBuilder.Name">
<summary>Retrieves the name of this type.</summary>
<returns>Read-only. Retrieves the <see cref="T:System.String" /> name of this type.</returns>
</member>
<member name="P:System.Reflection.Emit.TypeBuilder.Namespace">
<summary>Retrieves the namespace where this TypeBuilder is defined.</summary>
<returns>Read-only. Retrieves the namespace where this TypeBuilder is defined.</returns>
</member>
<member name="P:System.Reflection.Emit.TypeBuilder.PackingSize">
<summary>Retrieves the packing size of this type.</summary>
<returns>Read-only. Retrieves the packing size of this type.</returns>
</member>
<member name="M:System.Reflection.Emit.TypeBuilder.SetCustomAttribute(System.Reflection.ConstructorInfo,System.Byte[])">
<summary>Sets 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" /> or <paramref name="binaryAttribute" /> is null. </exception>
<exception cref="T:System.InvalidOperationException">For the current dynamic type, the <see cref="P:System.Reflection.Emit.TypeBuilder.IsGenericType" /> property is true, but the <see cref="P:System.Reflection.Emit.TypeBuilder.IsGenericTypeDefinition" /> property is false.</exception>
</member>
<member name="M:System.Reflection.Emit.TypeBuilder.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="customBuilder" /> is null. </exception>
<exception cref="T:System.InvalidOperationException">For the current dynamic type, the <see cref="P:System.Reflection.Emit.TypeBuilder.IsGenericType" /> property is true, but the <see cref="P:System.Reflection.Emit.TypeBuilder.IsGenericTypeDefinition" /> property is false.</exception>
</member>
<member name="M:System.Reflection.Emit.TypeBuilder.SetParent(System.Type)">
<summary>Sets the base type of the type currently under construction.</summary>
<param name="parent">The new base type. </param>
<exception cref="T:System.InvalidOperationException">The type was previously created using <see cref="M:System.Reflection.Emit.TypeBuilder.CreateType" />.-or-<paramref name="parent" /> is null, and the current instance represents an interface whose attributes do not include <see cref="F:System.Reflection.TypeAttributes.Abstract" />.-or-For the current dynamic type, the <see cref="P:System.Reflection.Emit.TypeBuilder.IsGenericType" /> property is true, but the <see cref="P:System.Reflection.Emit.TypeBuilder.IsGenericTypeDefinition" /> property is false. </exception>
<exception cref="T:System.ArgumentException">
<paramref name="parent" /> is an interface. This exception condition is new in the .NET Framework version 2.0. </exception>
</member>
<member name="P:System.Reflection.Emit.TypeBuilder.Size">
<summary>Retrieves the total size of a type.</summary>
<returns>Read-only. Retrieves this type’s total size.</returns>
</member>
<member name="M:System.Reflection.Emit.TypeBuilder.ToString">
<summary>Returns the name of the type excluding the namespace.</summary>
<returns>Read-only. The name of the type excluding the namespace.</returns>
</member>
<member name="F:System.Reflection.Emit.TypeBuilder.UnspecifiedTypeSize">
<summary>Represents that total size for the type is not specified.</summary>
</member>
</members>
</doc>