forked from dotnet/runtime
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathSystem.CodeDom.cs
More file actions
1226 lines (1225 loc) · 82.6 KB
/
System.CodeDom.cs
File metadata and controls
1226 lines (1225 loc) · 82.6 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
// Licensed to the .NET Foundation under one or more agreements.
// The .NET Foundation licenses this file to you under the MIT license.
// See the LICENSE file in the project root for more information.
// ------------------------------------------------------------------------------
// Changes to this file must follow the http://aka.ms/api-review process.
// ------------------------------------------------------------------------------
namespace Microsoft.CSharp
{
public partial class CSharpCodeProvider : System.CodeDom.Compiler.CodeDomProvider
{
public CSharpCodeProvider() { }
public CSharpCodeProvider(System.Collections.Generic.IDictionary<string, string> providerOptions) { }
public override string FileExtension { get { throw null; } }
[System.ObsoleteAttribute("Callers should not use the ICodeCompiler interface and should instead use the methods directly on the CodeDomProvider class.")]
public override System.CodeDom.Compiler.ICodeCompiler CreateCompiler() { throw null; }
[System.ObsoleteAttribute("Callers should not use the ICodeGenerator interface and should instead use the methods directly on the CodeDomProvider class.")]
public override System.CodeDom.Compiler.ICodeGenerator CreateGenerator() { throw null; }
public override void GenerateCodeFromMember(System.CodeDom.CodeTypeMember member, System.IO.TextWriter writer, System.CodeDom.Compiler.CodeGeneratorOptions options) { }
public override System.ComponentModel.TypeConverter GetConverter(System.Type type) { throw null; }
}
}
namespace Microsoft.VisualBasic
{
public partial class VBCodeProvider : System.CodeDom.Compiler.CodeDomProvider
{
public VBCodeProvider() { }
public VBCodeProvider(System.Collections.Generic.IDictionary<string, string> providerOptions) { }
public override string FileExtension { get { throw null; } }
public override System.CodeDom.Compiler.LanguageOptions LanguageOptions { get { throw null; } }
[System.ObsoleteAttribute("Callers should not use the ICodeCompiler interface and should instead use the methods directly on the CodeDomProvider class.")]
public override System.CodeDom.Compiler.ICodeCompiler CreateCompiler() { throw null; }
[System.ObsoleteAttribute("Callers should not use the ICodeGenerator interface and should instead use the methods directly on the CodeDomProvider class.")]
public override System.CodeDom.Compiler.ICodeGenerator CreateGenerator() { throw null; }
public override void GenerateCodeFromMember(System.CodeDom.CodeTypeMember member, System.IO.TextWriter writer, System.CodeDom.Compiler.CodeGeneratorOptions options) { }
public override System.ComponentModel.TypeConverter GetConverter(System.Type type) { throw null; }
}
}
namespace System.CodeDom
{
public partial class CodeArgumentReferenceExpression : System.CodeDom.CodeExpression
{
public CodeArgumentReferenceExpression() { }
public CodeArgumentReferenceExpression(string parameterName) { }
public string ParameterName { get { throw null; } set { } }
}
public partial class CodeArrayCreateExpression : System.CodeDom.CodeExpression
{
public CodeArrayCreateExpression() { }
public CodeArrayCreateExpression(System.CodeDom.CodeTypeReference createType, System.CodeDom.CodeExpression size) { }
public CodeArrayCreateExpression(System.CodeDom.CodeTypeReference createType, params System.CodeDom.CodeExpression[] initializers) { }
public CodeArrayCreateExpression(System.CodeDom.CodeTypeReference createType, int size) { }
public CodeArrayCreateExpression(string createType, System.CodeDom.CodeExpression size) { }
public CodeArrayCreateExpression(string createType, params System.CodeDom.CodeExpression[] initializers) { }
public CodeArrayCreateExpression(string createType, int size) { }
public CodeArrayCreateExpression(System.Type createType, System.CodeDom.CodeExpression size) { }
public CodeArrayCreateExpression(System.Type createType, params System.CodeDom.CodeExpression[] initializers) { }
public CodeArrayCreateExpression(System.Type createType, int size) { }
public System.CodeDom.CodeTypeReference CreateType { get { throw null; } set { } }
public System.CodeDom.CodeExpressionCollection Initializers { get { throw null; } }
public int Size { get { throw null; } set { } }
public System.CodeDom.CodeExpression SizeExpression { get { throw null; } set { } }
}
public partial class CodeArrayIndexerExpression : System.CodeDom.CodeExpression
{
public CodeArrayIndexerExpression() { }
public CodeArrayIndexerExpression(System.CodeDom.CodeExpression targetObject, params System.CodeDom.CodeExpression[] indices) { }
public System.CodeDom.CodeExpressionCollection Indices { get { throw null; } }
public System.CodeDom.CodeExpression TargetObject { get { throw null; } set { } }
}
public partial class CodeAssignStatement : System.CodeDom.CodeStatement
{
public CodeAssignStatement() { }
public CodeAssignStatement(System.CodeDom.CodeExpression left, System.CodeDom.CodeExpression right) { }
public System.CodeDom.CodeExpression Left { get { throw null; } set { } }
public System.CodeDom.CodeExpression Right { get { throw null; } set { } }
}
public partial class CodeAttachEventStatement : System.CodeDom.CodeStatement
{
public CodeAttachEventStatement() { }
public CodeAttachEventStatement(System.CodeDom.CodeEventReferenceExpression eventRef, System.CodeDom.CodeExpression listener) { }
public CodeAttachEventStatement(System.CodeDom.CodeExpression targetObject, string eventName, System.CodeDom.CodeExpression listener) { }
public System.CodeDom.CodeEventReferenceExpression Event { get { throw null; } set { } }
public System.CodeDom.CodeExpression Listener { get { throw null; } set { } }
}
public partial class CodeAttributeArgument
{
public CodeAttributeArgument() { }
public CodeAttributeArgument(System.CodeDom.CodeExpression value) { }
public CodeAttributeArgument(string name, System.CodeDom.CodeExpression value) { }
public string Name { get { throw null; } set { } }
public System.CodeDom.CodeExpression Value { get { throw null; } set { } }
}
public partial class CodeAttributeArgumentCollection : System.Collections.CollectionBase
{
public CodeAttributeArgumentCollection() { }
public CodeAttributeArgumentCollection(System.CodeDom.CodeAttributeArgumentCollection value) { }
public CodeAttributeArgumentCollection(System.CodeDom.CodeAttributeArgument[] value) { }
public System.CodeDom.CodeAttributeArgument this[int index] { get { throw null; } set { } }
public int Add(System.CodeDom.CodeAttributeArgument value) { throw null; }
public void AddRange(System.CodeDom.CodeAttributeArgumentCollection value) { }
public void AddRange(System.CodeDom.CodeAttributeArgument[] value) { }
public bool Contains(System.CodeDom.CodeAttributeArgument value) { throw null; }
public void CopyTo(System.CodeDom.CodeAttributeArgument[] array, int index) { }
public int IndexOf(System.CodeDom.CodeAttributeArgument value) { throw null; }
public void Insert(int index, System.CodeDom.CodeAttributeArgument value) { }
public void Remove(System.CodeDom.CodeAttributeArgument value) { }
}
public partial class CodeAttributeDeclaration
{
public CodeAttributeDeclaration() { }
public CodeAttributeDeclaration(System.CodeDom.CodeTypeReference attributeType) { }
public CodeAttributeDeclaration(System.CodeDom.CodeTypeReference attributeType, params System.CodeDom.CodeAttributeArgument[] arguments) { }
public CodeAttributeDeclaration(string name) { }
public CodeAttributeDeclaration(string name, params System.CodeDom.CodeAttributeArgument[] arguments) { }
public System.CodeDom.CodeAttributeArgumentCollection Arguments { get { throw null; } }
public System.CodeDom.CodeTypeReference AttributeType { get { throw null; } }
public string Name { get { throw null; } set { } }
}
public partial class CodeAttributeDeclarationCollection : System.Collections.CollectionBase
{
public CodeAttributeDeclarationCollection() { }
public CodeAttributeDeclarationCollection(System.CodeDom.CodeAttributeDeclarationCollection value) { }
public CodeAttributeDeclarationCollection(System.CodeDom.CodeAttributeDeclaration[] value) { }
public System.CodeDom.CodeAttributeDeclaration this[int index] { get { throw null; } set { } }
public int Add(System.CodeDom.CodeAttributeDeclaration value) { throw null; }
public void AddRange(System.CodeDom.CodeAttributeDeclarationCollection value) { }
public void AddRange(System.CodeDom.CodeAttributeDeclaration[] value) { }
public bool Contains(System.CodeDom.CodeAttributeDeclaration value) { throw null; }
public void CopyTo(System.CodeDom.CodeAttributeDeclaration[] array, int index) { }
public int IndexOf(System.CodeDom.CodeAttributeDeclaration value) { throw null; }
public void Insert(int index, System.CodeDom.CodeAttributeDeclaration value) { }
public void Remove(System.CodeDom.CodeAttributeDeclaration value) { }
}
public partial class CodeBaseReferenceExpression : System.CodeDom.CodeExpression
{
public CodeBaseReferenceExpression() { }
}
public partial class CodeBinaryOperatorExpression : System.CodeDom.CodeExpression
{
public CodeBinaryOperatorExpression() { }
public CodeBinaryOperatorExpression(System.CodeDom.CodeExpression left, System.CodeDom.CodeBinaryOperatorType op, System.CodeDom.CodeExpression right) { }
public System.CodeDom.CodeExpression Left { get { throw null; } set { } }
public System.CodeDom.CodeBinaryOperatorType Operator { get { throw null; } set { } }
public System.CodeDom.CodeExpression Right { get { throw null; } set { } }
}
public enum CodeBinaryOperatorType
{
Add = 0,
Subtract = 1,
Multiply = 2,
Divide = 3,
Modulus = 4,
Assign = 5,
IdentityInequality = 6,
IdentityEquality = 7,
ValueEquality = 8,
BitwiseOr = 9,
BitwiseAnd = 10,
BooleanOr = 11,
BooleanAnd = 12,
LessThan = 13,
LessThanOrEqual = 14,
GreaterThan = 15,
GreaterThanOrEqual = 16,
}
public partial class CodeCastExpression : System.CodeDom.CodeExpression
{
public CodeCastExpression() { }
public CodeCastExpression(System.CodeDom.CodeTypeReference targetType, System.CodeDom.CodeExpression expression) { }
public CodeCastExpression(string targetType, System.CodeDom.CodeExpression expression) { }
public CodeCastExpression(System.Type targetType, System.CodeDom.CodeExpression expression) { }
public System.CodeDom.CodeExpression Expression { get { throw null; } set { } }
public System.CodeDom.CodeTypeReference TargetType { get { throw null; } set { } }
}
public partial class CodeCatchClause
{
public CodeCatchClause() { }
public CodeCatchClause(string localName) { }
public CodeCatchClause(string localName, System.CodeDom.CodeTypeReference catchExceptionType) { }
public CodeCatchClause(string localName, System.CodeDom.CodeTypeReference catchExceptionType, params System.CodeDom.CodeStatement[] statements) { }
public System.CodeDom.CodeTypeReference CatchExceptionType { get { throw null; } set { } }
public string LocalName { get { throw null; } set { } }
public System.CodeDom.CodeStatementCollection Statements { get { throw null; } }
}
public partial class CodeCatchClauseCollection : System.Collections.CollectionBase
{
public CodeCatchClauseCollection() { }
public CodeCatchClauseCollection(System.CodeDom.CodeCatchClauseCollection value) { }
public CodeCatchClauseCollection(System.CodeDom.CodeCatchClause[] value) { }
public System.CodeDom.CodeCatchClause this[int index] { get { throw null; } set { } }
public int Add(System.CodeDom.CodeCatchClause value) { throw null; }
public void AddRange(System.CodeDom.CodeCatchClauseCollection value) { }
public void AddRange(System.CodeDom.CodeCatchClause[] value) { }
public bool Contains(System.CodeDom.CodeCatchClause value) { throw null; }
public void CopyTo(System.CodeDom.CodeCatchClause[] array, int index) { }
public int IndexOf(System.CodeDom.CodeCatchClause value) { throw null; }
public void Insert(int index, System.CodeDom.CodeCatchClause value) { }
public void Remove(System.CodeDom.CodeCatchClause value) { }
}
public partial class CodeChecksumPragma : System.CodeDom.CodeDirective
{
public CodeChecksumPragma() { }
public CodeChecksumPragma(string fileName, System.Guid checksumAlgorithmId, byte[] checksumData) { }
public System.Guid ChecksumAlgorithmId { get { throw null; } set { } }
public byte[] ChecksumData { get { throw null; } set { } }
public string FileName { get { throw null; } set { } }
}
public partial class CodeComment : System.CodeDom.CodeObject
{
public CodeComment() { }
public CodeComment(string text) { }
public CodeComment(string text, bool docComment) { }
public bool DocComment { get { throw null; } set { } }
public string Text { get { throw null; } set { } }
}
public partial class CodeCommentStatement : System.CodeDom.CodeStatement
{
public CodeCommentStatement() { }
public CodeCommentStatement(System.CodeDom.CodeComment comment) { }
public CodeCommentStatement(string text) { }
public CodeCommentStatement(string text, bool docComment) { }
public System.CodeDom.CodeComment Comment { get { throw null; } set { } }
}
public partial class CodeCommentStatementCollection : System.Collections.CollectionBase
{
public CodeCommentStatementCollection() { }
public CodeCommentStatementCollection(System.CodeDom.CodeCommentStatementCollection value) { }
public CodeCommentStatementCollection(System.CodeDom.CodeCommentStatement[] value) { }
public System.CodeDom.CodeCommentStatement this[int index] { get { throw null; } set { } }
public int Add(System.CodeDom.CodeCommentStatement value) { throw null; }
public void AddRange(System.CodeDom.CodeCommentStatementCollection value) { }
public void AddRange(System.CodeDom.CodeCommentStatement[] value) { }
public bool Contains(System.CodeDom.CodeCommentStatement value) { throw null; }
public void CopyTo(System.CodeDom.CodeCommentStatement[] array, int index) { }
public int IndexOf(System.CodeDom.CodeCommentStatement value) { throw null; }
public void Insert(int index, System.CodeDom.CodeCommentStatement value) { }
public void Remove(System.CodeDom.CodeCommentStatement value) { }
}
public partial class CodeCompileUnit : System.CodeDom.CodeObject
{
public CodeCompileUnit() { }
public System.CodeDom.CodeAttributeDeclarationCollection AssemblyCustomAttributes { get { throw null; } }
public System.CodeDom.CodeDirectiveCollection EndDirectives { get { throw null; } }
public System.CodeDom.CodeNamespaceCollection Namespaces { get { throw null; } }
public System.Collections.Specialized.StringCollection ReferencedAssemblies { get { throw null; } }
public System.CodeDom.CodeDirectiveCollection StartDirectives { get { throw null; } }
}
public partial class CodeConditionStatement : System.CodeDom.CodeStatement
{
public CodeConditionStatement() { }
public CodeConditionStatement(System.CodeDom.CodeExpression condition, params System.CodeDom.CodeStatement[] trueStatements) { }
public CodeConditionStatement(System.CodeDom.CodeExpression condition, System.CodeDom.CodeStatement[] trueStatements, System.CodeDom.CodeStatement[] falseStatements) { }
public System.CodeDom.CodeExpression Condition { get { throw null; } set { } }
public System.CodeDom.CodeStatementCollection FalseStatements { get { throw null; } }
public System.CodeDom.CodeStatementCollection TrueStatements { get { throw null; } }
}
public partial class CodeConstructor : System.CodeDom.CodeMemberMethod
{
public CodeConstructor() { }
public System.CodeDom.CodeExpressionCollection BaseConstructorArgs { get { throw null; } }
public System.CodeDom.CodeExpressionCollection ChainedConstructorArgs { get { throw null; } }
}
public partial class CodeDefaultValueExpression : System.CodeDom.CodeExpression
{
public CodeDefaultValueExpression() { }
public CodeDefaultValueExpression(System.CodeDom.CodeTypeReference type) { }
public System.CodeDom.CodeTypeReference Type { get { throw null; } set { } }
}
public partial class CodeDelegateCreateExpression : System.CodeDom.CodeExpression
{
public CodeDelegateCreateExpression() { }
public CodeDelegateCreateExpression(System.CodeDom.CodeTypeReference delegateType, System.CodeDom.CodeExpression targetObject, string methodName) { }
public System.CodeDom.CodeTypeReference DelegateType { get { throw null; } set { } }
public string MethodName { get { throw null; } set { } }
public System.CodeDom.CodeExpression TargetObject { get { throw null; } set { } }
}
public partial class CodeDelegateInvokeExpression : System.CodeDom.CodeExpression
{
public CodeDelegateInvokeExpression() { }
public CodeDelegateInvokeExpression(System.CodeDom.CodeExpression targetObject) { }
public CodeDelegateInvokeExpression(System.CodeDom.CodeExpression targetObject, params System.CodeDom.CodeExpression[] parameters) { }
public System.CodeDom.CodeExpressionCollection Parameters { get { throw null; } }
public System.CodeDom.CodeExpression TargetObject { get { throw null; } set { } }
}
public partial class CodeDirectionExpression : System.CodeDom.CodeExpression
{
public CodeDirectionExpression() { }
public CodeDirectionExpression(System.CodeDom.FieldDirection direction, System.CodeDom.CodeExpression expression) { }
public System.CodeDom.FieldDirection Direction { get { throw null; } set { } }
public System.CodeDom.CodeExpression Expression { get { throw null; } set { } }
}
public partial class CodeDirective : System.CodeDom.CodeObject
{
public CodeDirective() { }
}
public partial class CodeDirectiveCollection : System.Collections.CollectionBase
{
public CodeDirectiveCollection() { }
public CodeDirectiveCollection(System.CodeDom.CodeDirectiveCollection value) { }
public CodeDirectiveCollection(System.CodeDom.CodeDirective[] value) { }
public System.CodeDom.CodeDirective this[int index] { get { throw null; } set { } }
public int Add(System.CodeDom.CodeDirective value) { throw null; }
public void AddRange(System.CodeDom.CodeDirectiveCollection value) { }
public void AddRange(System.CodeDom.CodeDirective[] value) { }
public bool Contains(System.CodeDom.CodeDirective value) { throw null; }
public void CopyTo(System.CodeDom.CodeDirective[] array, int index) { }
public int IndexOf(System.CodeDom.CodeDirective value) { throw null; }
public void Insert(int index, System.CodeDom.CodeDirective value) { }
public void Remove(System.CodeDom.CodeDirective value) { }
}
public partial class CodeEntryPointMethod : System.CodeDom.CodeMemberMethod
{
public CodeEntryPointMethod() { }
}
public partial class CodeEventReferenceExpression : System.CodeDom.CodeExpression
{
public CodeEventReferenceExpression() { }
public CodeEventReferenceExpression(System.CodeDom.CodeExpression targetObject, string eventName) { }
public string EventName { get { throw null; } set { } }
public System.CodeDom.CodeExpression TargetObject { get { throw null; } set { } }
}
public partial class CodeExpression : System.CodeDom.CodeObject
{
public CodeExpression() { }
}
public partial class CodeExpressionCollection : System.Collections.CollectionBase
{
public CodeExpressionCollection() { }
public CodeExpressionCollection(System.CodeDom.CodeExpressionCollection value) { }
public CodeExpressionCollection(System.CodeDom.CodeExpression[] value) { }
public System.CodeDom.CodeExpression this[int index] { get { throw null; } set { } }
public int Add(System.CodeDom.CodeExpression value) { throw null; }
public void AddRange(System.CodeDom.CodeExpressionCollection value) { }
public void AddRange(System.CodeDom.CodeExpression[] value) { }
public bool Contains(System.CodeDom.CodeExpression value) { throw null; }
public void CopyTo(System.CodeDom.CodeExpression[] array, int index) { }
public int IndexOf(System.CodeDom.CodeExpression value) { throw null; }
public void Insert(int index, System.CodeDom.CodeExpression value) { }
public void Remove(System.CodeDom.CodeExpression value) { }
}
public partial class CodeExpressionStatement : System.CodeDom.CodeStatement
{
public CodeExpressionStatement() { }
public CodeExpressionStatement(System.CodeDom.CodeExpression expression) { }
public System.CodeDom.CodeExpression Expression { get { throw null; } set { } }
}
public partial class CodeFieldReferenceExpression : System.CodeDom.CodeExpression
{
public CodeFieldReferenceExpression() { }
public CodeFieldReferenceExpression(System.CodeDom.CodeExpression targetObject, string fieldName) { }
public string FieldName { get { throw null; } set { } }
public System.CodeDom.CodeExpression TargetObject { get { throw null; } set { } }
}
public partial class CodeGotoStatement : System.CodeDom.CodeStatement
{
public CodeGotoStatement() { }
public CodeGotoStatement(string label) { }
public string Label { get { throw null; } set { } }
}
public partial class CodeIndexerExpression : System.CodeDom.CodeExpression
{
public CodeIndexerExpression() { }
public CodeIndexerExpression(System.CodeDom.CodeExpression targetObject, params System.CodeDom.CodeExpression[] indices) { }
public System.CodeDom.CodeExpressionCollection Indices { get { throw null; } }
public System.CodeDom.CodeExpression TargetObject { get { throw null; } set { } }
}
public partial class CodeIterationStatement : System.CodeDom.CodeStatement
{
public CodeIterationStatement() { }
public CodeIterationStatement(System.CodeDom.CodeStatement initStatement, System.CodeDom.CodeExpression testExpression, System.CodeDom.CodeStatement incrementStatement, params System.CodeDom.CodeStatement[] statements) { }
public System.CodeDom.CodeStatement IncrementStatement { get { throw null; } set { } }
public System.CodeDom.CodeStatement InitStatement { get { throw null; } set { } }
public System.CodeDom.CodeStatementCollection Statements { get { throw null; } }
public System.CodeDom.CodeExpression TestExpression { get { throw null; } set { } }
}
public partial class CodeLabeledStatement : System.CodeDom.CodeStatement
{
public CodeLabeledStatement() { }
public CodeLabeledStatement(string label) { }
public CodeLabeledStatement(string label, System.CodeDom.CodeStatement statement) { }
public string Label { get { throw null; } set { } }
public System.CodeDom.CodeStatement Statement { get { throw null; } set { } }
}
public partial class CodeLinePragma
{
public CodeLinePragma() { }
public CodeLinePragma(string fileName, int lineNumber) { }
public string FileName { get { throw null; } set { } }
public int LineNumber { get { throw null; } set { } }
}
public partial class CodeMemberEvent : System.CodeDom.CodeTypeMember
{
public CodeMemberEvent() { }
public System.CodeDom.CodeTypeReferenceCollection ImplementationTypes { get { throw null; } }
public System.CodeDom.CodeTypeReference PrivateImplementationType { get { throw null; } set { } }
public System.CodeDom.CodeTypeReference Type { get { throw null; } set { } }
}
public partial class CodeMemberField : System.CodeDom.CodeTypeMember
{
public CodeMemberField() { }
public CodeMemberField(System.CodeDom.CodeTypeReference type, string name) { }
public CodeMemberField(string type, string name) { }
public CodeMemberField(System.Type type, string name) { }
public System.CodeDom.CodeExpression InitExpression { get { throw null; } set { } }
public System.CodeDom.CodeTypeReference Type { get { throw null; } set { } }
}
public partial class CodeMemberMethod : System.CodeDom.CodeTypeMember
{
public CodeMemberMethod() { }
public System.CodeDom.CodeTypeReferenceCollection ImplementationTypes { get { throw null; } }
public System.CodeDom.CodeParameterDeclarationExpressionCollection Parameters { get { throw null; } }
public System.CodeDom.CodeTypeReference PrivateImplementationType { get { throw null; } set { } }
public System.CodeDom.CodeTypeReference ReturnType { get { throw null; } set { } }
public System.CodeDom.CodeAttributeDeclarationCollection ReturnTypeCustomAttributes { get { throw null; } }
public System.CodeDom.CodeStatementCollection Statements { get { throw null; } }
public System.CodeDom.CodeTypeParameterCollection TypeParameters { get { throw null; } }
public event System.EventHandler PopulateImplementationTypes { add { } remove { } }
public event System.EventHandler PopulateParameters { add { } remove { } }
public event System.EventHandler PopulateStatements { add { } remove { } }
}
public partial class CodeMemberProperty : System.CodeDom.CodeTypeMember
{
public CodeMemberProperty() { }
public System.CodeDom.CodeStatementCollection GetStatements { get { throw null; } }
public bool HasGet { get { throw null; } set { } }
public bool HasSet { get { throw null; } set { } }
public System.CodeDom.CodeTypeReferenceCollection ImplementationTypes { get { throw null; } }
public System.CodeDom.CodeParameterDeclarationExpressionCollection Parameters { get { throw null; } }
public System.CodeDom.CodeTypeReference PrivateImplementationType { get { throw null; } set { } }
public System.CodeDom.CodeStatementCollection SetStatements { get { throw null; } }
public System.CodeDom.CodeTypeReference Type { get { throw null; } set { } }
}
public partial class CodeMethodInvokeExpression : System.CodeDom.CodeExpression
{
public CodeMethodInvokeExpression() { }
public CodeMethodInvokeExpression(System.CodeDom.CodeExpression targetObject, string methodName, params System.CodeDom.CodeExpression[] parameters) { }
public CodeMethodInvokeExpression(System.CodeDom.CodeMethodReferenceExpression method, params System.CodeDom.CodeExpression[] parameters) { }
public System.CodeDom.CodeMethodReferenceExpression Method { get { throw null; } set { } }
public System.CodeDom.CodeExpressionCollection Parameters { get { throw null; } }
}
public partial class CodeMethodReferenceExpression : System.CodeDom.CodeExpression
{
public CodeMethodReferenceExpression() { }
public CodeMethodReferenceExpression(System.CodeDom.CodeExpression targetObject, string methodName) { }
public CodeMethodReferenceExpression(System.CodeDom.CodeExpression targetObject, string methodName, params System.CodeDom.CodeTypeReference[] typeParameters) { }
public string MethodName { get { throw null; } set { } }
public System.CodeDom.CodeExpression TargetObject { get { throw null; } set { } }
public System.CodeDom.CodeTypeReferenceCollection TypeArguments { get { throw null; } }
}
public partial class CodeMethodReturnStatement : System.CodeDom.CodeStatement
{
public CodeMethodReturnStatement() { }
public CodeMethodReturnStatement(System.CodeDom.CodeExpression expression) { }
public System.CodeDom.CodeExpression Expression { get { throw null; } set { } }
}
public partial class CodeNamespace : System.CodeDom.CodeObject
{
public CodeNamespace() { }
public CodeNamespace(string name) { }
public System.CodeDom.CodeCommentStatementCollection Comments { get { throw null; } }
public System.CodeDom.CodeNamespaceImportCollection Imports { get { throw null; } }
public string Name { get { throw null; } set { } }
public System.CodeDom.CodeTypeDeclarationCollection Types { get { throw null; } }
public event System.EventHandler PopulateComments { add { } remove { } }
public event System.EventHandler PopulateImports { add { } remove { } }
public event System.EventHandler PopulateTypes { add { } remove { } }
}
public partial class CodeNamespaceCollection : System.Collections.CollectionBase
{
public CodeNamespaceCollection() { }
public CodeNamespaceCollection(System.CodeDom.CodeNamespaceCollection value) { }
public CodeNamespaceCollection(System.CodeDom.CodeNamespace[] value) { }
public System.CodeDom.CodeNamespace this[int index] { get { throw null; } set { } }
public int Add(System.CodeDom.CodeNamespace value) { throw null; }
public void AddRange(System.CodeDom.CodeNamespaceCollection value) { }
public void AddRange(System.CodeDom.CodeNamespace[] value) { }
public bool Contains(System.CodeDom.CodeNamespace value) { throw null; }
public void CopyTo(System.CodeDom.CodeNamespace[] array, int index) { }
public int IndexOf(System.CodeDom.CodeNamespace value) { throw null; }
public void Insert(int index, System.CodeDom.CodeNamespace value) { }
public void Remove(System.CodeDom.CodeNamespace value) { }
}
public partial class CodeNamespaceImport : System.CodeDom.CodeObject
{
public CodeNamespaceImport() { }
public CodeNamespaceImport(string nameSpace) { }
public System.CodeDom.CodeLinePragma LinePragma { get { throw null; } set { } }
public string Namespace { get { throw null; } set { } }
}
public partial class CodeNamespaceImportCollection : System.Collections.ICollection, System.Collections.IEnumerable, System.Collections.IList
{
public CodeNamespaceImportCollection() { }
public int Count { get { throw null; } }
public System.CodeDom.CodeNamespaceImport this[int index] { get { throw null; } set { } }
int System.Collections.ICollection.Count { get { throw null; } }
bool System.Collections.ICollection.IsSynchronized { get { throw null; } }
object System.Collections.ICollection.SyncRoot { get { throw null; } }
bool System.Collections.IList.IsFixedSize { get { throw null; } }
bool System.Collections.IList.IsReadOnly { get { throw null; } }
object System.Collections.IList.this[int index] { get { throw null; } set { } }
public void Add(System.CodeDom.CodeNamespaceImport value) { }
public void AddRange(System.CodeDom.CodeNamespaceImport[] value) { }
public void Clear() { }
public System.Collections.IEnumerator GetEnumerator() { throw null; }
void System.Collections.ICollection.CopyTo(System.Array array, int index) { }
System.Collections.IEnumerator System.Collections.IEnumerable.GetEnumerator() { throw null; }
int System.Collections.IList.Add(object value) { throw null; }
void System.Collections.IList.Clear() { }
bool System.Collections.IList.Contains(object value) { throw null; }
int System.Collections.IList.IndexOf(object value) { throw null; }
void System.Collections.IList.Insert(int index, object value) { }
void System.Collections.IList.Remove(object value) { }
void System.Collections.IList.RemoveAt(int index) { }
}
public partial class CodeObject
{
public CodeObject() { }
public System.Collections.IDictionary UserData { get { throw null; } }
}
public partial class CodeObjectCreateExpression : System.CodeDom.CodeExpression
{
public CodeObjectCreateExpression() { }
public CodeObjectCreateExpression(System.CodeDom.CodeTypeReference createType, params System.CodeDom.CodeExpression[] parameters) { }
public CodeObjectCreateExpression(string createType, params System.CodeDom.CodeExpression[] parameters) { }
public CodeObjectCreateExpression(System.Type createType, params System.CodeDom.CodeExpression[] parameters) { }
public System.CodeDom.CodeTypeReference CreateType { get { throw null; } set { } }
public System.CodeDom.CodeExpressionCollection Parameters { get { throw null; } }
}
public partial class CodeParameterDeclarationExpression : System.CodeDom.CodeExpression
{
public CodeParameterDeclarationExpression() { }
public CodeParameterDeclarationExpression(System.CodeDom.CodeTypeReference type, string name) { }
public CodeParameterDeclarationExpression(string type, string name) { }
public CodeParameterDeclarationExpression(System.Type type, string name) { }
public System.CodeDom.CodeAttributeDeclarationCollection CustomAttributes { get { throw null; } set { } }
public System.CodeDom.FieldDirection Direction { get { throw null; } set { } }
public string Name { get { throw null; } set { } }
public System.CodeDom.CodeTypeReference Type { get { throw null; } set { } }
}
public partial class CodeParameterDeclarationExpressionCollection : System.Collections.CollectionBase
{
public CodeParameterDeclarationExpressionCollection() { }
public CodeParameterDeclarationExpressionCollection(System.CodeDom.CodeParameterDeclarationExpressionCollection value) { }
public CodeParameterDeclarationExpressionCollection(System.CodeDom.CodeParameterDeclarationExpression[] value) { }
public System.CodeDom.CodeParameterDeclarationExpression this[int index] { get { throw null; } set { } }
public int Add(System.CodeDom.CodeParameterDeclarationExpression value) { throw null; }
public void AddRange(System.CodeDom.CodeParameterDeclarationExpressionCollection value) { }
public void AddRange(System.CodeDom.CodeParameterDeclarationExpression[] value) { }
public bool Contains(System.CodeDom.CodeParameterDeclarationExpression value) { throw null; }
public void CopyTo(System.CodeDom.CodeParameterDeclarationExpression[] array, int index) { }
public int IndexOf(System.CodeDom.CodeParameterDeclarationExpression value) { throw null; }
public void Insert(int index, System.CodeDom.CodeParameterDeclarationExpression value) { }
public void Remove(System.CodeDom.CodeParameterDeclarationExpression value) { }
}
public partial class CodePrimitiveExpression : System.CodeDom.CodeExpression
{
public CodePrimitiveExpression() { }
public CodePrimitiveExpression(object value) { }
public object Value { get { throw null; } set { } }
}
public partial class CodePropertyReferenceExpression : System.CodeDom.CodeExpression
{
public CodePropertyReferenceExpression() { }
public CodePropertyReferenceExpression(System.CodeDom.CodeExpression targetObject, string propertyName) { }
public string PropertyName { get { throw null; } set { } }
public System.CodeDom.CodeExpression TargetObject { get { throw null; } set { } }
}
public partial class CodePropertySetValueReferenceExpression : System.CodeDom.CodeExpression
{
public CodePropertySetValueReferenceExpression() { }
}
public partial class CodeRegionDirective : System.CodeDom.CodeDirective
{
public CodeRegionDirective() { }
public CodeRegionDirective(System.CodeDom.CodeRegionMode regionMode, string regionText) { }
public System.CodeDom.CodeRegionMode RegionMode { get { throw null; } set { } }
public string RegionText { get { throw null; } set { } }
}
public enum CodeRegionMode
{
None = 0,
Start = 1,
End = 2,
}
public partial class CodeRemoveEventStatement : System.CodeDom.CodeStatement
{
public CodeRemoveEventStatement() { }
public CodeRemoveEventStatement(System.CodeDom.CodeEventReferenceExpression eventRef, System.CodeDom.CodeExpression listener) { }
public CodeRemoveEventStatement(System.CodeDom.CodeExpression targetObject, string eventName, System.CodeDom.CodeExpression listener) { }
public System.CodeDom.CodeEventReferenceExpression Event { get { throw null; } set { } }
public System.CodeDom.CodeExpression Listener { get { throw null; } set { } }
}
public partial class CodeSnippetCompileUnit : System.CodeDom.CodeCompileUnit
{
public CodeSnippetCompileUnit() { }
public CodeSnippetCompileUnit(string value) { }
public System.CodeDom.CodeLinePragma LinePragma { get { throw null; } set { } }
public string Value { get { throw null; } set { } }
}
public partial class CodeSnippetExpression : System.CodeDom.CodeExpression
{
public CodeSnippetExpression() { }
public CodeSnippetExpression(string value) { }
public string Value { get { throw null; } set { } }
}
public partial class CodeSnippetStatement : System.CodeDom.CodeStatement
{
public CodeSnippetStatement() { }
public CodeSnippetStatement(string value) { }
public string Value { get { throw null; } set { } }
}
public partial class CodeSnippetTypeMember : System.CodeDom.CodeTypeMember
{
public CodeSnippetTypeMember() { }
public CodeSnippetTypeMember(string text) { }
public string Text { get { throw null; } set { } }
}
public partial class CodeStatement : System.CodeDom.CodeObject
{
public CodeStatement() { }
public System.CodeDom.CodeDirectiveCollection EndDirectives { get { throw null; } }
public System.CodeDom.CodeLinePragma LinePragma { get { throw null; } set { } }
public System.CodeDom.CodeDirectiveCollection StartDirectives { get { throw null; } }
}
public partial class CodeStatementCollection : System.Collections.CollectionBase
{
public CodeStatementCollection() { }
public CodeStatementCollection(System.CodeDom.CodeStatementCollection value) { }
public CodeStatementCollection(System.CodeDom.CodeStatement[] value) { }
public System.CodeDom.CodeStatement this[int index] { get { throw null; } set { } }
public int Add(System.CodeDom.CodeExpression value) { throw null; }
public int Add(System.CodeDom.CodeStatement value) { throw null; }
public void AddRange(System.CodeDom.CodeStatementCollection value) { }
public void AddRange(System.CodeDom.CodeStatement[] value) { }
public bool Contains(System.CodeDom.CodeStatement value) { throw null; }
public void CopyTo(System.CodeDom.CodeStatement[] array, int index) { }
public int IndexOf(System.CodeDom.CodeStatement value) { throw null; }
public void Insert(int index, System.CodeDom.CodeStatement value) { }
public void Remove(System.CodeDom.CodeStatement value) { }
}
public partial class CodeThisReferenceExpression : System.CodeDom.CodeExpression
{
public CodeThisReferenceExpression() { }
}
public partial class CodeThrowExceptionStatement : System.CodeDom.CodeStatement
{
public CodeThrowExceptionStatement() { }
public CodeThrowExceptionStatement(System.CodeDom.CodeExpression toThrow) { }
public System.CodeDom.CodeExpression ToThrow { get { throw null; } set { } }
}
public partial class CodeTryCatchFinallyStatement : System.CodeDom.CodeStatement
{
public CodeTryCatchFinallyStatement() { }
public CodeTryCatchFinallyStatement(System.CodeDom.CodeStatement[] tryStatements, System.CodeDom.CodeCatchClause[] catchClauses) { }
public CodeTryCatchFinallyStatement(System.CodeDom.CodeStatement[] tryStatements, System.CodeDom.CodeCatchClause[] catchClauses, System.CodeDom.CodeStatement[] finallyStatements) { }
public System.CodeDom.CodeCatchClauseCollection CatchClauses { get { throw null; } }
public System.CodeDom.CodeStatementCollection FinallyStatements { get { throw null; } }
public System.CodeDom.CodeStatementCollection TryStatements { get { throw null; } }
}
public partial class CodeTypeConstructor : System.CodeDom.CodeMemberMethod
{
public CodeTypeConstructor() { }
}
public partial class CodeTypeDeclaration : System.CodeDom.CodeTypeMember
{
public CodeTypeDeclaration() { }
public CodeTypeDeclaration(string name) { }
public System.CodeDom.CodeTypeReferenceCollection BaseTypes { get { throw null; } }
public bool IsClass { get { throw null; } set { } }
public bool IsEnum { get { throw null; } set { } }
public bool IsInterface { get { throw null; } set { } }
public bool IsPartial { get { throw null; } set { } }
public bool IsStruct { get { throw null; } set { } }
public System.CodeDom.CodeTypeMemberCollection Members { get { throw null; } }
public System.Reflection.TypeAttributes TypeAttributes { get { throw null; } set { } }
public System.CodeDom.CodeTypeParameterCollection TypeParameters { get { throw null; } }
public event System.EventHandler PopulateBaseTypes { add { } remove { } }
public event System.EventHandler PopulateMembers { add { } remove { } }
}
public partial class CodeTypeDeclarationCollection : System.Collections.CollectionBase
{
public CodeTypeDeclarationCollection() { }
public CodeTypeDeclarationCollection(System.CodeDom.CodeTypeDeclarationCollection value) { }
public CodeTypeDeclarationCollection(System.CodeDom.CodeTypeDeclaration[] value) { }
public System.CodeDom.CodeTypeDeclaration this[int index] { get { throw null; } set { } }
public int Add(System.CodeDom.CodeTypeDeclaration value) { throw null; }
public void AddRange(System.CodeDom.CodeTypeDeclarationCollection value) { }
public void AddRange(System.CodeDom.CodeTypeDeclaration[] value) { }
public bool Contains(System.CodeDom.CodeTypeDeclaration value) { throw null; }
public void CopyTo(System.CodeDom.CodeTypeDeclaration[] array, int index) { }
public int IndexOf(System.CodeDom.CodeTypeDeclaration value) { throw null; }
public void Insert(int index, System.CodeDom.CodeTypeDeclaration value) { }
public void Remove(System.CodeDom.CodeTypeDeclaration value) { }
}
public partial class CodeTypeDelegate : System.CodeDom.CodeTypeDeclaration
{
public CodeTypeDelegate() { }
public CodeTypeDelegate(string name) { }
public System.CodeDom.CodeParameterDeclarationExpressionCollection Parameters { get { throw null; } }
public System.CodeDom.CodeTypeReference ReturnType { get { throw null; } set { } }
}
public partial class CodeTypeMember : System.CodeDom.CodeObject
{
public CodeTypeMember() { }
public System.CodeDom.MemberAttributes Attributes { get { throw null; } set { } }
public System.CodeDom.CodeCommentStatementCollection Comments { get { throw null; } }
public System.CodeDom.CodeAttributeDeclarationCollection CustomAttributes { get { throw null; } set { } }
public System.CodeDom.CodeDirectiveCollection EndDirectives { get { throw null; } }
public System.CodeDom.CodeLinePragma LinePragma { get { throw null; } set { } }
public string Name { get { throw null; } set { } }
public System.CodeDom.CodeDirectiveCollection StartDirectives { get { throw null; } }
}
public partial class CodeTypeMemberCollection : System.Collections.CollectionBase
{
public CodeTypeMemberCollection() { }
public CodeTypeMemberCollection(System.CodeDom.CodeTypeMemberCollection value) { }
public CodeTypeMemberCollection(System.CodeDom.CodeTypeMember[] value) { }
public System.CodeDom.CodeTypeMember this[int index] { get { throw null; } set { } }
public int Add(System.CodeDom.CodeTypeMember value) { throw null; }
public void AddRange(System.CodeDom.CodeTypeMemberCollection value) { }
public void AddRange(System.CodeDom.CodeTypeMember[] value) { }
public bool Contains(System.CodeDom.CodeTypeMember value) { throw null; }
public void CopyTo(System.CodeDom.CodeTypeMember[] array, int index) { }
public int IndexOf(System.CodeDom.CodeTypeMember value) { throw null; }
public void Insert(int index, System.CodeDom.CodeTypeMember value) { }
public void Remove(System.CodeDom.CodeTypeMember value) { }
}
public partial class CodeTypeOfExpression : System.CodeDom.CodeExpression
{
public CodeTypeOfExpression() { }
public CodeTypeOfExpression(System.CodeDom.CodeTypeReference type) { }
public CodeTypeOfExpression(string type) { }
public CodeTypeOfExpression(System.Type type) { }
public System.CodeDom.CodeTypeReference Type { get { throw null; } set { } }
}
public partial class CodeTypeParameter : System.CodeDom.CodeObject
{
public CodeTypeParameter() { }
public CodeTypeParameter(string name) { }
public System.CodeDom.CodeTypeReferenceCollection Constraints { get { throw null; } }
public System.CodeDom.CodeAttributeDeclarationCollection CustomAttributes { get { throw null; } }
public bool HasConstructorConstraint { get { throw null; } set { } }
public string Name { get { throw null; } set { } }
}
public partial class CodeTypeParameterCollection : System.Collections.CollectionBase
{
public CodeTypeParameterCollection() { }
public CodeTypeParameterCollection(System.CodeDom.CodeTypeParameterCollection value) { }
public CodeTypeParameterCollection(System.CodeDom.CodeTypeParameter[] value) { }
public System.CodeDom.CodeTypeParameter this[int index] { get { throw null; } set { } }
public int Add(System.CodeDom.CodeTypeParameter value) { throw null; }
public void Add(string value) { }
public void AddRange(System.CodeDom.CodeTypeParameterCollection value) { }
public void AddRange(System.CodeDom.CodeTypeParameter[] value) { }
public bool Contains(System.CodeDom.CodeTypeParameter value) { throw null; }
public void CopyTo(System.CodeDom.CodeTypeParameter[] array, int index) { }
public int IndexOf(System.CodeDom.CodeTypeParameter value) { throw null; }
public void Insert(int index, System.CodeDom.CodeTypeParameter value) { }
public void Remove(System.CodeDom.CodeTypeParameter value) { }
}
public partial class CodeTypeReference : System.CodeDom.CodeObject
{
public CodeTypeReference() { }
public CodeTypeReference(System.CodeDom.CodeTypeParameter typeParameter) { }
public CodeTypeReference(System.CodeDom.CodeTypeReference arrayType, int rank) { }
public CodeTypeReference(string typeName) { }
public CodeTypeReference(string typeName, System.CodeDom.CodeTypeReferenceOptions codeTypeReferenceOption) { }
public CodeTypeReference(string typeName, params System.CodeDom.CodeTypeReference[] typeArguments) { }
public CodeTypeReference(string baseType, int rank) { }
public CodeTypeReference(System.Type type) { }
public CodeTypeReference(System.Type type, System.CodeDom.CodeTypeReferenceOptions codeTypeReferenceOption) { }
public System.CodeDom.CodeTypeReference ArrayElementType { get { throw null; } set { } }
public int ArrayRank { get { throw null; } set { } }
public string BaseType { get { throw null; } set { } }
public System.CodeDom.CodeTypeReferenceOptions Options { get { throw null; } set { } }
public System.CodeDom.CodeTypeReferenceCollection TypeArguments { get { throw null; } }
}
public partial class CodeTypeReferenceCollection : System.Collections.CollectionBase
{
public CodeTypeReferenceCollection() { }
public CodeTypeReferenceCollection(System.CodeDom.CodeTypeReferenceCollection value) { }
public CodeTypeReferenceCollection(System.CodeDom.CodeTypeReference[] value) { }
public System.CodeDom.CodeTypeReference this[int index] { get { throw null; } set { } }
public int Add(System.CodeDom.CodeTypeReference value) { throw null; }
public void Add(string value) { }
public void Add(System.Type value) { }
public void AddRange(System.CodeDom.CodeTypeReferenceCollection value) { }
public void AddRange(System.CodeDom.CodeTypeReference[] value) { }
public bool Contains(System.CodeDom.CodeTypeReference value) { throw null; }
public void CopyTo(System.CodeDom.CodeTypeReference[] array, int index) { }
public int IndexOf(System.CodeDom.CodeTypeReference value) { throw null; }
public void Insert(int index, System.CodeDom.CodeTypeReference value) { }
public void Remove(System.CodeDom.CodeTypeReference value) { }
}
public partial class CodeTypeReferenceExpression : System.CodeDom.CodeExpression
{
public CodeTypeReferenceExpression() { }
public CodeTypeReferenceExpression(System.CodeDom.CodeTypeReference type) { }
public CodeTypeReferenceExpression(string type) { }
public CodeTypeReferenceExpression(System.Type type) { }
public System.CodeDom.CodeTypeReference Type { get { throw null; } set { } }
}
[System.FlagsAttribute]
public enum CodeTypeReferenceOptions
{
GlobalReference = 1,
GenericTypeParameter = 2,
}
public partial class CodeVariableDeclarationStatement : System.CodeDom.CodeStatement
{
public CodeVariableDeclarationStatement() { }
public CodeVariableDeclarationStatement(System.CodeDom.CodeTypeReference type, string name) { }
public CodeVariableDeclarationStatement(System.CodeDom.CodeTypeReference type, string name, System.CodeDom.CodeExpression initExpression) { }
public CodeVariableDeclarationStatement(string type, string name) { }
public CodeVariableDeclarationStatement(string type, string name, System.CodeDom.CodeExpression initExpression) { }
public CodeVariableDeclarationStatement(System.Type type, string name) { }
public CodeVariableDeclarationStatement(System.Type type, string name, System.CodeDom.CodeExpression initExpression) { }
public System.CodeDom.CodeExpression InitExpression { get { throw null; } set { } }
public string Name { get { throw null; } set { } }
public System.CodeDom.CodeTypeReference Type { get { throw null; } set { } }
}
public partial class CodeVariableReferenceExpression : System.CodeDom.CodeExpression
{
public CodeVariableReferenceExpression() { }
public CodeVariableReferenceExpression(string variableName) { }
public string VariableName { get { throw null; } set { } }
}
public enum FieldDirection
{
In = 0,
Out = 1,
Ref = 2,
}
public enum MemberAttributes
{
Abstract = 1,
Final = 2,
Static = 3,
Override = 4,
Const = 5,
ScopeMask = 15,
New = 16,
VTableMask = 240,
Overloaded = 256,
Assembly = 4096,
FamilyAndAssembly = 8192,
Family = 12288,
FamilyOrAssembly = 16384,
Private = 20480,
Public = 24576,
AccessMask = 61440,
}
}
namespace System.CodeDom.Compiler
{
public abstract partial class CodeCompiler : System.CodeDom.Compiler.CodeGenerator, System.CodeDom.Compiler.ICodeCompiler
{
protected CodeCompiler() { }
protected abstract string CompilerName { get; }
protected abstract string FileExtension { get; }
protected abstract string CmdArgsFromParameters(System.CodeDom.Compiler.CompilerParameters options);
protected virtual System.CodeDom.Compiler.CompilerResults FromDom(System.CodeDom.Compiler.CompilerParameters options, System.CodeDom.CodeCompileUnit e) { throw null; }
protected virtual System.CodeDom.Compiler.CompilerResults FromDomBatch(System.CodeDom.Compiler.CompilerParameters options, System.CodeDom.CodeCompileUnit[] ea) { throw null; }
protected virtual System.CodeDom.Compiler.CompilerResults FromFile(System.CodeDom.Compiler.CompilerParameters options, string fileName) { throw null; }
protected virtual System.CodeDom.Compiler.CompilerResults FromFileBatch(System.CodeDom.Compiler.CompilerParameters options, string[] fileNames) { throw null; }
protected virtual System.CodeDom.Compiler.CompilerResults FromSource(System.CodeDom.Compiler.CompilerParameters options, string source) { throw null; }
protected virtual System.CodeDom.Compiler.CompilerResults FromSourceBatch(System.CodeDom.Compiler.CompilerParameters options, string[] sources) { throw null; }
protected virtual string GetResponseFileCmdArgs(System.CodeDom.Compiler.CompilerParameters options, string cmdArgs) { throw null; }
protected static string JoinStringArray(string[] sa, string separator) { throw null; }
protected abstract void ProcessCompilerOutputLine(System.CodeDom.Compiler.CompilerResults results, string line);
System.CodeDom.Compiler.CompilerResults System.CodeDom.Compiler.ICodeCompiler.CompileAssemblyFromDom(System.CodeDom.Compiler.CompilerParameters options, System.CodeDom.CodeCompileUnit e) { throw null; }
System.CodeDom.Compiler.CompilerResults System.CodeDom.Compiler.ICodeCompiler.CompileAssemblyFromDomBatch(System.CodeDom.Compiler.CompilerParameters options, System.CodeDom.CodeCompileUnit[] ea) { throw null; }
System.CodeDom.Compiler.CompilerResults System.CodeDom.Compiler.ICodeCompiler.CompileAssemblyFromFile(System.CodeDom.Compiler.CompilerParameters options, string fileName) { throw null; }
System.CodeDom.Compiler.CompilerResults System.CodeDom.Compiler.ICodeCompiler.CompileAssemblyFromFileBatch(System.CodeDom.Compiler.CompilerParameters options, string[] fileNames) { throw null; }
System.CodeDom.Compiler.CompilerResults System.CodeDom.Compiler.ICodeCompiler.CompileAssemblyFromSource(System.CodeDom.Compiler.CompilerParameters options, string source) { throw null; }
System.CodeDom.Compiler.CompilerResults System.CodeDom.Compiler.ICodeCompiler.CompileAssemblyFromSourceBatch(System.CodeDom.Compiler.CompilerParameters options, string[] sources) { throw null; }
}
public abstract partial class CodeDomProvider : System.ComponentModel.Component
{
protected CodeDomProvider() { }
public virtual string FileExtension { get { throw null; } }
public virtual System.CodeDom.Compiler.LanguageOptions LanguageOptions { get { throw null; } }
public virtual System.CodeDom.Compiler.CompilerResults CompileAssemblyFromDom(System.CodeDom.Compiler.CompilerParameters options, params System.CodeDom.CodeCompileUnit[] compilationUnits) { throw null; }
public virtual System.CodeDom.Compiler.CompilerResults CompileAssemblyFromFile(System.CodeDom.Compiler.CompilerParameters options, params string[] fileNames) { throw null; }
public virtual System.CodeDom.Compiler.CompilerResults CompileAssemblyFromSource(System.CodeDom.Compiler.CompilerParameters options, params string[] sources) { throw null; }
[System.ObsoleteAttribute("Callers should not use the ICodeCompiler interface and should instead use the methods directly on the CodeDomProvider class. Those inheriting from CodeDomProvider must still implement this interface, and should exclude this warning or also obsolete this method.")]
public abstract System.CodeDom.Compiler.ICodeCompiler CreateCompiler();
public virtual string CreateEscapedIdentifier(string value) { throw null; }
[System.ObsoleteAttribute("Callers should not use the ICodeGenerator interface and should instead use the methods directly on the CodeDomProvider class. Those inheriting from CodeDomProvider must still implement this interface, and should exclude this warning or also obsolete this method.")]
public abstract System.CodeDom.Compiler.ICodeGenerator CreateGenerator();
public virtual System.CodeDom.Compiler.ICodeGenerator CreateGenerator(System.IO.TextWriter output) { throw null; }
public virtual System.CodeDom.Compiler.ICodeGenerator CreateGenerator(string fileName) { throw null; }
[System.ObsoleteAttribute("Callers should not use the ICodeParser interface and should instead use the methods directly on the CodeDomProvider class. Those inheriting from CodeDomProvider must still implement this interface, and should exclude this warning or also obsolete this method.")]
public virtual System.CodeDom.Compiler.ICodeParser CreateParser() { throw null; }
public static System.CodeDom.Compiler.CodeDomProvider CreateProvider(string language) { throw null; }
public static System.CodeDom.Compiler.CodeDomProvider CreateProvider(string language, System.Collections.Generic.IDictionary<string, string> providerOptions) { throw null; }
public virtual string CreateValidIdentifier(string value) { throw null; }
public virtual void GenerateCodeFromCompileUnit(System.CodeDom.CodeCompileUnit compileUnit, System.IO.TextWriter writer, System.CodeDom.Compiler.CodeGeneratorOptions options) { }
public virtual void GenerateCodeFromExpression(System.CodeDom.CodeExpression expression, System.IO.TextWriter writer, System.CodeDom.Compiler.CodeGeneratorOptions options) { }
public virtual void GenerateCodeFromMember(System.CodeDom.CodeTypeMember member, System.IO.TextWriter writer, System.CodeDom.Compiler.CodeGeneratorOptions options) { }
public virtual void GenerateCodeFromNamespace(System.CodeDom.CodeNamespace codeNamespace, System.IO.TextWriter writer, System.CodeDom.Compiler.CodeGeneratorOptions options) { }
public virtual void GenerateCodeFromStatement(System.CodeDom.CodeStatement statement, System.IO.TextWriter writer, System.CodeDom.Compiler.CodeGeneratorOptions options) { }
public virtual void GenerateCodeFromType(System.CodeDom.CodeTypeDeclaration codeType, System.IO.TextWriter writer, System.CodeDom.Compiler.CodeGeneratorOptions options) { }
public static System.CodeDom.Compiler.CompilerInfo[] GetAllCompilerInfo() { throw null; }
public static System.CodeDom.Compiler.CompilerInfo GetCompilerInfo(string language) { throw null; }
public virtual System.ComponentModel.TypeConverter GetConverter(System.Type type) { throw null; }
public static string GetLanguageFromExtension(string extension) { throw null; }
public virtual string GetTypeOutput(System.CodeDom.CodeTypeReference type) { throw null; }
public static bool IsDefinedExtension(string extension) { throw null; }
public static bool IsDefinedLanguage(string language) { throw null; }
public virtual bool IsValidIdentifier(string value) { throw null; }
public virtual System.CodeDom.CodeCompileUnit Parse(System.IO.TextReader codeStream) { throw null; }
public virtual bool Supports(System.CodeDom.Compiler.GeneratorSupport generatorSupport) { throw null; }
}
public abstract partial class CodeGenerator : System.CodeDom.Compiler.ICodeGenerator
{
protected CodeGenerator() { }
protected System.CodeDom.CodeTypeDeclaration CurrentClass { get { throw null; } }
protected System.CodeDom.CodeTypeMember CurrentMember { get { throw null; } }
protected string CurrentMemberName { get { throw null; } }
protected string CurrentTypeName { get { throw null; } }
protected int Indent { get { throw null; } set { } }
protected bool IsCurrentClass { get { throw null; } }
protected bool IsCurrentDelegate { get { throw null; } }
protected bool IsCurrentEnum { get { throw null; } }
protected bool IsCurrentInterface { get { throw null; } }
protected bool IsCurrentStruct { get { throw null; } }
protected abstract string NullToken { get; }
protected System.CodeDom.Compiler.CodeGeneratorOptions Options { get { throw null; } }
protected System.IO.TextWriter Output { get { throw null; } }
protected virtual void ContinueOnNewLine(string st) { }
protected abstract string CreateEscapedIdentifier(string value);
protected abstract string CreateValidIdentifier(string value);
protected abstract void GenerateArgumentReferenceExpression(System.CodeDom.CodeArgumentReferenceExpression e);
protected abstract void GenerateArrayCreateExpression(System.CodeDom.CodeArrayCreateExpression e);
protected abstract void GenerateArrayIndexerExpression(System.CodeDom.CodeArrayIndexerExpression e);
protected abstract void GenerateAssignStatement(System.CodeDom.CodeAssignStatement e);
protected abstract void GenerateAttachEventStatement(System.CodeDom.CodeAttachEventStatement e);
protected abstract void GenerateAttributeDeclarationsEnd(System.CodeDom.CodeAttributeDeclarationCollection attributes);
protected abstract void GenerateAttributeDeclarationsStart(System.CodeDom.CodeAttributeDeclarationCollection attributes);
protected abstract void GenerateBaseReferenceExpression(System.CodeDom.CodeBaseReferenceExpression e);
protected virtual void GenerateBinaryOperatorExpression(System.CodeDom.CodeBinaryOperatorExpression e) { }
protected abstract void GenerateCastExpression(System.CodeDom.CodeCastExpression e);
public virtual void GenerateCodeFromMember(System.CodeDom.CodeTypeMember member, System.IO.TextWriter writer, System.CodeDom.Compiler.CodeGeneratorOptions options) { }
protected abstract void GenerateComment(System.CodeDom.CodeComment e);
protected virtual void GenerateCommentStatement(System.CodeDom.CodeCommentStatement e) { }
protected virtual void GenerateCommentStatements(System.CodeDom.CodeCommentStatementCollection e) { }
protected virtual void GenerateCompileUnit(System.CodeDom.CodeCompileUnit e) { }
protected virtual void GenerateCompileUnitEnd(System.CodeDom.CodeCompileUnit e) { }
protected virtual void GenerateCompileUnitStart(System.CodeDom.CodeCompileUnit e) { }
protected abstract void GenerateConditionStatement(System.CodeDom.CodeConditionStatement e);
protected abstract void GenerateConstructor(System.CodeDom.CodeConstructor e, System.CodeDom.CodeTypeDeclaration c);
protected virtual void GenerateDecimalValue(decimal d) { }
protected virtual void GenerateDefaultValueExpression(System.CodeDom.CodeDefaultValueExpression e) { }
protected abstract void GenerateDelegateCreateExpression(System.CodeDom.CodeDelegateCreateExpression e);
protected abstract void GenerateDelegateInvokeExpression(System.CodeDom.CodeDelegateInvokeExpression e);
protected virtual void GenerateDirectionExpression(System.CodeDom.CodeDirectionExpression e) { }
protected virtual void GenerateDirectives(System.CodeDom.CodeDirectiveCollection directives) { }
protected virtual void GenerateDoubleValue(double d) { }
protected abstract void GenerateEntryPointMethod(System.CodeDom.CodeEntryPointMethod e, System.CodeDom.CodeTypeDeclaration c);
protected abstract void GenerateEvent(System.CodeDom.CodeMemberEvent e, System.CodeDom.CodeTypeDeclaration c);
protected abstract void GenerateEventReferenceExpression(System.CodeDom.CodeEventReferenceExpression e);
protected void GenerateExpression(System.CodeDom.CodeExpression e) { }
protected abstract void GenerateExpressionStatement(System.CodeDom.CodeExpressionStatement e);
protected abstract void GenerateField(System.CodeDom.CodeMemberField e);
protected abstract void GenerateFieldReferenceExpression(System.CodeDom.CodeFieldReferenceExpression e);
protected abstract void GenerateGotoStatement(System.CodeDom.CodeGotoStatement e);
protected abstract void GenerateIndexerExpression(System.CodeDom.CodeIndexerExpression e);
protected abstract void GenerateIterationStatement(System.CodeDom.CodeIterationStatement e);
protected abstract void GenerateLabeledStatement(System.CodeDom.CodeLabeledStatement e);
protected abstract void GenerateLinePragmaEnd(System.CodeDom.CodeLinePragma e);
protected abstract void GenerateLinePragmaStart(System.CodeDom.CodeLinePragma e);
protected abstract void GenerateMethod(System.CodeDom.CodeMemberMethod e, System.CodeDom.CodeTypeDeclaration c);
protected abstract void GenerateMethodInvokeExpression(System.CodeDom.CodeMethodInvokeExpression e);
protected abstract void GenerateMethodReferenceExpression(System.CodeDom.CodeMethodReferenceExpression e);
protected abstract void GenerateMethodReturnStatement(System.CodeDom.CodeMethodReturnStatement e);
protected virtual void GenerateNamespace(System.CodeDom.CodeNamespace e) { }
protected abstract void GenerateNamespaceEnd(System.CodeDom.CodeNamespace e);
protected abstract void GenerateNamespaceImport(System.CodeDom.CodeNamespaceImport e);
protected void GenerateNamespaceImports(System.CodeDom.CodeNamespace e) { }
protected void GenerateNamespaces(System.CodeDom.CodeCompileUnit e) { }
protected abstract void GenerateNamespaceStart(System.CodeDom.CodeNamespace e);
protected abstract void GenerateObjectCreateExpression(System.CodeDom.CodeObjectCreateExpression e);
protected virtual void GenerateParameterDeclarationExpression(System.CodeDom.CodeParameterDeclarationExpression e) { }
protected virtual void GeneratePrimitiveExpression(System.CodeDom.CodePrimitiveExpression e) { }
protected abstract void GenerateProperty(System.CodeDom.CodeMemberProperty e, System.CodeDom.CodeTypeDeclaration c);
protected abstract void GeneratePropertyReferenceExpression(System.CodeDom.CodePropertyReferenceExpression e);
protected abstract void GeneratePropertySetValueReferenceExpression(System.CodeDom.CodePropertySetValueReferenceExpression e);
protected abstract void GenerateRemoveEventStatement(System.CodeDom.CodeRemoveEventStatement e);
protected virtual void GenerateSingleFloatValue(float s) { }
protected virtual void GenerateSnippetCompileUnit(System.CodeDom.CodeSnippetCompileUnit e) { }
protected abstract void GenerateSnippetExpression(System.CodeDom.CodeSnippetExpression e);
protected abstract void GenerateSnippetMember(System.CodeDom.CodeSnippetTypeMember e);
protected virtual void GenerateSnippetStatement(System.CodeDom.CodeSnippetStatement e) { }
protected void GenerateStatement(System.CodeDom.CodeStatement e) { }
protected void GenerateStatements(System.CodeDom.CodeStatementCollection stms) { }
protected abstract void GenerateThisReferenceExpression(System.CodeDom.CodeThisReferenceExpression e);
protected abstract void GenerateThrowExceptionStatement(System.CodeDom.CodeThrowExceptionStatement e);
protected abstract void GenerateTryCatchFinallyStatement(System.CodeDom.CodeTryCatchFinallyStatement e);