-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathSystem.Web.Razor.xml
5742 lines (5742 loc) · 504 KB
/
System.Web.Razor.xml
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
<?xml version="1.0" encoding="utf-8"?>
<doc>
<assembly>
<name>System.Web.Razor</name>
</assembly>
<members>
<member name="T:System.Web.Razor.CSharpRazorCodeLanguage">
<summary>This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code. Represents a Razor code language that is based on C# syntax.</summary>
</member>
<member name="M:System.Web.Razor.CSharpRazorCodeLanguage.#ctor">
<summary>This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code. Initializes a new instance of the <see cref="T:System.Web.Razor.CSharpRazorCodeLanguage" /> class.</summary>
</member>
<member name="P:System.Web.Razor.CSharpRazorCodeLanguage.CodeDomProviderType">
<summary>This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code. Gets the type of the code provider.</summary>
<returns>The type of the code provider.</returns>
</member>
<member name="M:System.Web.Razor.CSharpRazorCodeLanguage.CreateCodeGenerator(System.String,System.String,System.String,System.Web.Razor.RazorEngineHost)">
<summary>This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code. Creates a new Razor code generator based on C# code language.</summary>
<returns>The newly created Razor code generator based on C# code language.</returns>
<param name="className">The class name for the generated code.</param>
<param name="rootNamespaceName">The name of the root namespace for the generated code.</param>
<param name="sourceFileName">The name of the source code file.</param>
<param name="host">The Razor engine host.</param>
</member>
<member name="M:System.Web.Razor.CSharpRazorCodeLanguage.CreateCodeParser">
<summary>This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code. Creates a new code parser for C# code language.</summary>
<returns>The newly created code parser for C# code language.</returns>
</member>
<member name="P:System.Web.Razor.CSharpRazorCodeLanguage.LanguageName">
<summary>This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code. Gets the name of the C# code language.</summary>
<returns>The name of the C# code language. Value is ‘csharp’.</returns>
</member>
<member name="T:System.Web.Razor.DocumentParseCompleteEventArgs">
<summary>This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.</summary>
</member>
<member name="M:System.Web.Razor.DocumentParseCompleteEventArgs.#ctor">
<summary>This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.</summary>
</member>
<member name="P:System.Web.Razor.DocumentParseCompleteEventArgs.GeneratorResults">
<summary>This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.</summary>
</member>
<member name="P:System.Web.Razor.DocumentParseCompleteEventArgs.SourceChange">
<summary>This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.</summary>
</member>
<member name="P:System.Web.Razor.DocumentParseCompleteEventArgs.TreeStructureChanged">
<summary>This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.</summary>
</member>
<member name="T:System.Web.Razor.GeneratorResults">
<summary>This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.Represents results from code generation.</summary>
</member>
<member name="M:System.Web.Razor.GeneratorResults.#ctor(System.Boolean,System.Web.Razor.Parser.SyntaxTree.Block,System.Collections.Generic.IList{System.Web.Razor.Parser.SyntaxTree.RazorError},System.CodeDom.CodeCompileUnit,System.Collections.Generic.IDictionary{System.Int32,System.Web.Razor.Generator.GeneratedCodeMapping})">
<summary>This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.Initializes a new instance of the <see cref="T:System.Web.Razor.GeneratorResults" /> class.</summary>
<param name="success">true if the code generation is a success; otherwise, false.</param>
<param name="document">The document.</param>
<param name="parserErrors">The parser errors.</param>
<param name="generatedCode">The generated code.</param>
<param name="designTimeLineMappings">The dictionary of design-time generated code mappings.</param>
</member>
<member name="M:System.Web.Razor.GeneratorResults.#ctor(System.Web.Razor.Parser.SyntaxTree.Block,System.Collections.Generic.IList{System.Web.Razor.Parser.SyntaxTree.RazorError},System.CodeDom.CodeCompileUnit,System.Collections.Generic.IDictionary{System.Int32,System.Web.Razor.Generator.GeneratedCodeMapping})">
<summary>This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.Initializes a new instance of the <see cref="T:System.Web.Razor.GeneratorResults" /> class.</summary>
<param name="document">The document.</param>
<param name="parserErrors">The parser errors.</param>
<param name="generatedCode">The generated code.</param>
<param name="designTimeLineMappings">The dictionary of design-time generated code mappings.</param>
</member>
<member name="M:System.Web.Razor.GeneratorResults.#ctor(System.Web.Razor.ParserResults,System.CodeDom.CodeCompileUnit,System.Collections.Generic.IDictionary{System.Int32,System.Web.Razor.Generator.GeneratedCodeMapping})">
<summary>This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.Initializes a new instance of the <see cref="T:System.Web.Razor.GeneratorResults" /> class.</summary>
<param name="parserResults">The parser results.</param>
<param name="generatedCode">The generated code.</param>
<param name="designTimeLineMappings">The dictionary of design-time generated code mappings.</param>
</member>
<member name="P:System.Web.Razor.GeneratorResults.DesignTimeLineMappings">
<summary>This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.Gets or sets the dictionary of design-time generated code mappings.</summary>
<returns>The dictionary of design-time generated code mappings.</returns>
</member>
<member name="P:System.Web.Razor.GeneratorResults.GeneratedCode">
<summary>This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.Gets or sets the generated code.</summary>
<returns>The generated code.</returns>
</member>
<member name="T:System.Web.Razor.ParserResults">
<summary>This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.Represents the results of parsing a Razor document.</summary>
</member>
<member name="M:System.Web.Razor.ParserResults.#ctor(System.Boolean,System.Web.Razor.Parser.SyntaxTree.Block,System.Collections.Generic.IList{System.Web.Razor.Parser.SyntaxTree.RazorError})">
<summary>This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.Initializes a new instance of the <see cref="T:System.Web.Razor.ParserResults" /> class.</summary>
<param name="success">true if parsing was successful; otherwise, false.</param>
<param name="document">The root node in the document’s syntax tree.</param>
<param name="errors">The list of errors which occurred during parsing.</param>
</member>
<member name="M:System.Web.Razor.ParserResults.#ctor(System.Web.Razor.Parser.SyntaxTree.Block,System.Collections.Generic.IList{System.Web.Razor.Parser.SyntaxTree.RazorError})">
<summary>This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.Initializes a new instance of the <see cref="T:System.Web.Razor.ParserResults" /> class.</summary>
<param name="document">The root node in the document’s syntax tree.</param>
<param name="parserErrors">The list of errors which occurred during parsing.</param>
</member>
<member name="P:System.Web.Razor.ParserResults.Document">
<summary>This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.Gets or sets the root node in the document’s syntax tree.</summary>
<returns>The root node in the document’s syntax tree.</returns>
</member>
<member name="P:System.Web.Razor.ParserResults.ParserErrors">
<summary>This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.Gets or sets the list of errors which occurred during parsing.</summary>
<returns>The list of errors which occurred during parsing.</returns>
</member>
<member name="P:System.Web.Razor.ParserResults.Success">
<summary>This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.Gets or sets a value indicating whether parsing was successful.</summary>
<returns>true if parsing was successful; otherwise, false.</returns>
</member>
<member name="T:System.Web.Razor.PartialParseResult">
<summary>This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.</summary>
</member>
<member name="F:System.Web.Razor.PartialParseResult.Accepted">
<summary>This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.</summary>
</member>
<member name="F:System.Web.Razor.PartialParseResult.AutoCompleteBlock">
<summary>This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.</summary>
</member>
<member name="F:System.Web.Razor.PartialParseResult.Provisional">
<summary>This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.</summary>
</member>
<member name="F:System.Web.Razor.PartialParseResult.Rejected">
<summary>This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.</summary>
</member>
<member name="F:System.Web.Razor.PartialParseResult.SpanContextChanged">
<summary>This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.</summary>
</member>
<member name="T:System.Web.Razor.RazorCodeLanguage">
<summary>Represents the base for all Razor code language.This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.</summary>
</member>
<member name="M:System.Web.Razor.RazorCodeLanguage.#ctor">
<summary>Initializes a new instance of the <see cref="T:System.Web.Razor.RazorCodeLanguage" /> class.This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.</summary>
</member>
<member name="P:System.Web.Razor.RazorCodeLanguage.CodeDomProviderType">
<summary>Gets the type of the CodeDOM provider.This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.</summary>
<returns>The type of the CodeDOM provider.</returns>
</member>
<member name="M:System.Web.Razor.RazorCodeLanguage.CreateCodeGenerator(System.String,System.String,System.String,System.Web.Razor.RazorEngineHost)">
<summary>Creates the code generator for the Razor code language.This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.</summary>
<returns>The code generator for the Razor code language.</returns>
<param name="className">The class name.</param>
<param name="rootNamespaceName">The name of the root namespace.</param>
<param name="sourceFileName">The source file name.</param>
<param name="host">The Razor engine host.</param>
</member>
<member name="M:System.Web.Razor.RazorCodeLanguage.CreateCodeParser">
<summary>Creates the code parser for the Razor code language.This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.</summary>
<returns>The code parser for the Razor code language.</returns>
</member>
<member name="M:System.Web.Razor.RazorCodeLanguage.GetLanguageByExtension(System.String)">
<summary>Gets the language of the Razor code using the specified file extension.This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.</summary>
<returns>The language of the Razor code.</returns>
<param name="fileExtension">The file extension.</param>
</member>
<member name="P:System.Web.Razor.RazorCodeLanguage.LanguageName">
<summary>Gets the language name of the current Razor code, that is “csharp” or “vb”.This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.</summary>
<returns>The language name of the current Razor code.</returns>
</member>
<member name="P:System.Web.Razor.RazorCodeLanguage.Languages">
<summary>Gets the list of language supported by the Razor code.This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.</summary>
<returns>The list of language supported by the Razor code.</returns>
</member>
<member name="T:System.Web.Razor.RazorDirectiveAttribute">
<summary>This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code. Represents an attribute for the Razor directive.</summary>
</member>
<member name="M:System.Web.Razor.RazorDirectiveAttribute.#ctor(System.String,System.String)">
<summary>This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code. Initializes a new instance of the <see cref="T:System.Web.Razor.RazorDirectiveAttribute" /> class.</summary>
<param name="name">The name of the attribute.</param>
<param name="value">The value of the attribute.</param>
</member>
<member name="M:System.Web.Razor.RazorDirectiveAttribute.Equals(System.Object)">
<summary>This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code. Determines whether this instance is equal to a specified object.</summary>
<returns>true if the object is equal to the this instance; otherwise, false.</returns>
<param name="obj">The object to compare with this instance.</param>
</member>
<member name="M:System.Web.Razor.RazorDirectiveAttribute.GetHashCode">
<summary>This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code. Returns the hash code for this instance.</summary>
<returns>The hash code for this instance.</returns>
</member>
<member name="P:System.Web.Razor.RazorDirectiveAttribute.Name">
<summary>This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code. Gets or sets the name of the attribute.</summary>
<returns>The name of the attribute.</returns>
</member>
<member name="P:System.Web.Razor.RazorDirectiveAttribute.TypeId">
<summary>This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code. Gets the unique type ID of the attribute.</summary>
<returns>The unique type ID of the attribute.</returns>
</member>
<member name="P:System.Web.Razor.RazorDirectiveAttribute.Value">
<summary>This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code. Gets or sets the value of the attribute.</summary>
<returns>The value of the attribute.</returns>
</member>
<member name="T:System.Web.Razor.RazorEditorParser">
<summary>This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.Parser used by editors to avoid reparsing the entire document on each text change.</summary>
</member>
<member name="M:System.Web.Razor.RazorEditorParser.#ctor(System.Web.Razor.RazorEngineHost,System.String)">
<summary>This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.Constructs the editor parser.</summary>
<param name="host">The <see cref="T:System.Web.Razor.RazorEngineHost" /> which defines the environment in which the generated code will live.</param>
<param name="sourceFileName">The physical path to use in line pragmas.</param>
</member>
<member name="M:System.Web.Razor.RazorEditorParser.CheckForStructureChanges(System.Web.Razor.Text.TextChange)">
<summary>This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.Determines if a change will cause a structural change to the document and if not, applies it to the existing tree. If a structural change would occur, automatically starts a reparse.</summary>
<returns>A <see cref="T:System.Web.Razor.PartialParseResult" /> value indicating the result of the incremental parse.</returns>
<param name="change">The change to apply to the parse tree.</param>
</member>
<member name="P:System.Web.Razor.RazorEditorParser.CurrentParseTree">
<summary>This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.Gets the current parse tree.</summary>
<returns>The current parse tree.</returns>
</member>
<member name="M:System.Web.Razor.RazorEditorParser.Dispose">
<summary>This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.Releases all resources used by the current instance of the <see cref="T:System.Web.Razor.RazorEditorParser" />.</summary>
</member>
<member name="M:System.Web.Razor.RazorEditorParser.Dispose(System.Boolean)">
<summary>This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.Releases the unmanaged resources used by the <see cref="T:System.Web.Razor.RazorEditorParser" /> class and optionally releases the managed resources.</summary>
<param name="disposing">true to release both managed and unmanaged resources; false to release only unmanaged resources.</param>
</member>
<member name="E:System.Web.Razor.RazorEditorParser.DocumentParseComplete">
<summary>This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.Event fired when a full reparse of the document completes.</summary>
</member>
<member name="P:System.Web.Razor.RazorEditorParser.FileName">
<summary>This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.Gets or sets the filename of the document to parse.</summary>
<returns>The filename of the document to parse.</returns>
</member>
<member name="M:System.Web.Razor.RazorEditorParser.GetAutoCompleteString">
<summary>This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.Retrieves the auto complete string.</summary>
<returns>The auto complete string.</returns>
</member>
<member name="P:System.Web.Razor.RazorEditorParser.Host">
<summary>This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.Gets or sets the host for the parse.</summary>
<returns>The host for the parse.</returns>
</member>
<member name="P:System.Web.Razor.RazorEditorParser.LastResultProvisional">
<summary>This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.Gets or sets a value indicating whether the last result of the parse was provisionally accepted for next partial parse.</summary>
<returns>true if the last result of the parse was provisionally accepted for next partial parse; otherwise, false.</returns>
</member>
<member name="T:System.Web.Razor.RazorEngineHost">
<summary>This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.Represents the generated code for the razor engine host.</summary>
</member>
<member name="M:System.Web.Razor.RazorEngineHost.#ctor">
<summary>This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.Initializes a new instance of the <see cref="T:System.Web.Razor.RazorEngineHost" /> class.</summary>
</member>
<member name="M:System.Web.Razor.RazorEngineHost.#ctor(System.Web.Razor.RazorCodeLanguage)">
<summary>This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.Initializes a new instance of the <see cref="T:System.Web.Razor.RazorEngineHost" /> class.</summary>
<param name="codeLanguage">The specified code language.</param>
</member>
<member name="M:System.Web.Razor.RazorEngineHost.#ctor(System.Web.Razor.RazorCodeLanguage,System.Func{System.Web.Razor.Parser.ParserBase})">
<summary>Initializes a new instance of the <see cref="T:System.Web.Razor.RazorEngineHost" /> class.</summary>
<param name="codeLanguage">The specified code language.</param>
<param name="markupParserFactory">The markup parser factory.</param>
</member>
<member name="P:System.Web.Razor.RazorEngineHost.CodeLanguage">
<summary>This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.Gets the languages supported by the code generator.</summary>
<returns>The languages supported that by the code generator.</returns>
</member>
<member name="M:System.Web.Razor.RazorEngineHost.CreateMarkupParser">
<summary>This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.Creates a markup parser using the specified language parser for the <see cref="T:System.Web.Razor.RazorEngineHost" />.</summary>
<returns>A markup parser to create using the specified language parser for the <see cref="T:System.Web.Razor.RazorEngineHost" />.</returns>
</member>
<member name="M:System.Web.Razor.RazorEngineHost.DecorateCodeGenerator(System.Web.Razor.Generator.RazorCodeGenerator)">
<summary>This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.Returns the methods as language-specific Razor code generator.</summary>
<returns>The methods as language-specific Razor code generator.</returns>
<param name="incomingCodeGenerator">The C# or Visual Basic code generator.</param>
</member>
<member name="M:System.Web.Razor.RazorEngineHost.DecorateCodeParser(System.Web.Razor.Parser.ParserBase)">
<summary>This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.Returns the methods as language-specific Razor code parser using the specified language parser.</summary>
<returns>The methods as language-specific Razor code parser using the specified language parser.</returns>
<param name="incomingCodeParser">The C# or Visual Basic code parser.</param>
</member>
<member name="M:System.Web.Razor.RazorEngineHost.DecorateMarkupParser(System.Web.Razor.Parser.ParserBase)">
<summary>This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.Returns the method to decorate markup parser using the specified language parser.</summary>
<returns>The method to decorate markup parser using the specified language parser.</returns>
<param name="incomingMarkupParser">The C# or Visual Basic code parser.</param>
</member>
<member name="P:System.Web.Razor.RazorEngineHost.DefaultBaseClass">
<summary>This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.Gets or sets the default base class for the host.</summary>
<returns>The default base class for the host.</returns>
</member>
<member name="P:System.Web.Razor.RazorEngineHost.DefaultClassName">
<summary>This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.Gets or sets the default class name for the host.</summary>
<returns>The default class name for the host.</returns>
</member>
<member name="P:System.Web.Razor.RazorEngineHost.DefaultNamespace">
<summary>This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.Gets or sets the default namespace for the host.</summary>
<returns>The default namespace for the host.</returns>
</member>
<member name="P:System.Web.Razor.RazorEngineHost.DesignTimeMode">
<summary>This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.Gets or sets a value that indicates whether the mode designs a time for the host.</summary>
<returns>true if the mode designs a time for the host; otherwise, false.</returns>
</member>
<member name="P:System.Web.Razor.RazorEngineHost.EnableInstrumentation">
<summary>This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.Gets or sets the host that enables the instrumentation.</summary>
<returns>The host that enables the instrumentation.</returns>
</member>
<member name="P:System.Web.Razor.RazorEngineHost.GeneratedClassContext">
<summary>This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.Gets or sets the generated class context for the host.</summary>
<returns>The generated class context for the host.</returns>
</member>
<member name="P:System.Web.Razor.RazorEngineHost.InstrumentedSourceFilePath">
<summary>This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.Gets or sets the instrumented source file path for the host.</summary>
<returns>The instrumented source file path for the host.</returns>
</member>
<member name="P:System.Web.Razor.RazorEngineHost.IsIndentingWithTabs">
<summary>Gets or sets whether the design time editor is using tabs or spaces for indentation.</summary>
</member>
<member name="P:System.Web.Razor.RazorEngineHost.NamespaceImports">
<summary>This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.Gets the namespace imports for the host.</summary>
<returns>The namespace imports for the host.</returns>
</member>
<member name="M:System.Web.Razor.RazorEngineHost.PostProcessGeneratedCode(System.CodeDom.CodeCompileUnit,System.CodeDom.CodeNamespace,System.CodeDom.CodeTypeDeclaration,System.CodeDom.CodeMemberMethod)">
<summary>This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.Returns this method to post all the processed generated code for the host.</summary>
<param name="codeCompileUnit">The code compile unit.</param>
<param name="generatedNamespace">The generated namespace.</param>
<param name="generatedClass">The generated class.</param>
<param name="executeMethod">The execute method.</param>
</member>
<member name="M:System.Web.Razor.RazorEngineHost.PostProcessGeneratedCode(System.Web.Razor.Generator.CodeGeneratorContext)">
<summary>This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.Returns this method to post all the processed generated code for the host.</summary>
<param name="context">The code generator context.</param>
</member>
<member name="P:System.Web.Razor.RazorEngineHost.StaticHelpers">
<summary>This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.Gets or sets the static helpers for the host.</summary>
<returns>The static helpers for the host.</returns>
</member>
<member name="P:System.Web.Razor.RazorEngineHost.TabSize">
<summary>Tab size used by the hosting editor, when indenting with tabs.</summary>
</member>
<member name="T:System.Web.Razor.RazorTemplateEngine">
<summary>This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.Represents an entry-point to the Razor Template Engine.</summary>
</member>
<member name="M:System.Web.Razor.RazorTemplateEngine.#ctor(System.Web.Razor.RazorEngineHost)">
<summary>This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.Initializes a new instance of the <see cref="T:System.Web.Razor.RazorTemplateEngine" /> class.</summary>
<param name="host">The host.</param>
</member>
<member name="M:System.Web.Razor.RazorTemplateEngine.CreateCodeGenerator(System.String,System.String,System.String)">
<summary>This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.Creates a code generator.</summary>
<returns>The created <see cref="T:System.Web.Razor.Generator.RazorCodeGenerator" />.</returns>
<param name="className">The name of the generated class.</param>
<param name="rootNamespace">The namespace in which the generated class will reside.</param>
<param name="sourceFileName">The file name to use in line pragmas.</param>
</member>
<member name="M:System.Web.Razor.RazorTemplateEngine.CreateParser">
<summary>This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.Creates a <see cref="T:System.Web.Razor.Parser.RazorParser" />.</summary>
<returns>The created <see cref="T:System.Web.Razor.Parser.RazorParser" />.</returns>
</member>
<member name="F:System.Web.Razor.RazorTemplateEngine.DefaultClassName">
<summary>This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.Indicates the default class name of the template.</summary>
</member>
<member name="F:System.Web.Razor.RazorTemplateEngine.DefaultNamespace">
<summary>This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.Indicates the default namespace for the template.</summary>
</member>
<member name="M:System.Web.Razor.RazorTemplateEngine.GenerateCode(System.IO.TextReader)">
<summary>This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.Parses the template specified by the TextBuffer, generates code for it, and returns the constructed CodeDOM tree.</summary>
<returns>The resulting parse tree AND generated Code DOM tree.</returns>
<param name="input">The input text to parse.</param>
</member>
<member name="M:System.Web.Razor.RazorTemplateEngine.GenerateCode(System.IO.TextReader,System.Nullable{System.Threading.CancellationToken})">
<summary>This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.Parses the template specified by the TextBuffer, generates code for it, and returns the constructed CodeDOM tree.</summary>
<returns>The resulting parse tree AND generated Code DOM tree.</returns>
<param name="input">The input text to parse.</param>
<param name="cancelToken">A token used to cancel the parser.</param>
</member>
<member name="M:System.Web.Razor.RazorTemplateEngine.GenerateCode(System.IO.TextReader,System.String,System.String,System.String)">
<summary>This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.Parses the template specified by the TextBuffer, generates code for it, and returns the constructed CodeDOM tree.</summary>
<returns>The resulting parse tree AND generated Code DOM tree.</returns>
<param name="input">The input text to parse.</param>
<param name="className">The name of the generated class, overriding whatever is specified in the host.</param>
<param name="rootNamespace">The namespace in which the generated class will reside.</param>
<param name="sourceFileName">The file name to use in line pragmas.</param>
</member>
<member name="M:System.Web.Razor.RazorTemplateEngine.GenerateCode(System.IO.TextReader,System.String,System.String,System.String,System.Nullable{System.Threading.CancellationToken})">
<summary>This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.Parses the template specified by the TextBuffer, generates code for it, and returns the constructed CodeDOM tree.</summary>
<returns>The resulting parse tree AND generated Code DOM tree.</returns>
<param name="input">The input text to parse.</param>
<param name="className">The name of the generated class, overriding whatever is specified in the host.</param>
<param name="rootNamespace">The namespace in which the generated class will reside.</param>
<param name="sourceFileName">The file name to use in line pragmas.</param>
<param name="cancelToken">A token used to cancel the parser.</param>
</member>
<member name="M:System.Web.Razor.RazorTemplateEngine.GenerateCode(System.Web.Razor.Text.ITextBuffer)">
<summary>This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.Parses the template specified by the TextBuffer, generates code for it, and returns the constructed CodeDOM tree.</summary>
<returns>The resulting parse tree AND generated Code DOM tree.</returns>
<param name="input">The input text to parse.</param>
</member>
<member name="M:System.Web.Razor.RazorTemplateEngine.GenerateCode(System.Web.Razor.Text.ITextBuffer,System.Nullable{System.Threading.CancellationToken})">
<summary>This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.Parses the template specified by the TextBuffer, generates code for it, and returns the constructed CodeDOM tree.</summary>
<returns>The resulting parse tree AND generated Code DOM tree.</returns>
<param name="input">The input text to parse.</param>
<param name="cancelToken">A token used to cancel the parser.</param>
</member>
<member name="M:System.Web.Razor.RazorTemplateEngine.GenerateCode(System.Web.Razor.Text.ITextBuffer,System.String,System.String,System.String)">
<summary>This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.Parses the template specified by the TextBuffer, generates code for it, and returns the constructed CodeDOM tree.</summary>
<returns>The resulting parse tree AND generated Code DOM tree.</returns>
<param name="input">The input text to parse.</param>
<param name="className">The name of the generated class, overriding whatever is specified in the host.</param>
<param name="rootNamespace">The namespace in which the generated class will reside.</param>
<param name="sourceFileName">The file name to use in line pragmas.</param>
</member>
<member name="M:System.Web.Razor.RazorTemplateEngine.GenerateCode(System.Web.Razor.Text.ITextBuffer,System.String,System.String,System.String,System.Nullable{System.Threading.CancellationToken})">
<summary>This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.Parses the template specified by the TextBuffer, generates code for it, and returns the constructed CodeDOM tree.</summary>
<returns>The resulting parse tree AND generated Code DOM tree.</returns>
<param name="input">The input text to parse.</param>
<param name="className">The name of the generated class, overriding whatever is specified in the host.</param>
<param name="rootNamespace">The namespace in which the generated class will reside.</param>
<param name="sourceFileName">The file name to use in line pragmas.</param>
<param name="cancelToken">A token used to cancel the parser.</param>
</member>
<member name="M:System.Web.Razor.RazorTemplateEngine.GenerateCodeCore(System.Web.Razor.Text.ITextDocument,System.String,System.String,System.String,System.Nullable{System.Threading.CancellationToken})">
<summary>This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.Generates a code core.</summary>
<returns>The results of the generated core.</returns>
<param name="input">The input text to parse.</param>
<param name="className">The name of the generated class, overriding whatever is specified in the host.</param>
<param name="rootNamespace">The namespace in which the generated class will reside.</param>
<param name="sourceFileName">The file name to use in line pragmas.</param>
<param name="cancelToken">A token used to cancel the parser.</param>
</member>
<member name="P:System.Web.Razor.RazorTemplateEngine.Host">
<summary>This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.Gets or sets the <see cref="T:System.Web.Razor.RazorEngineHost" /> which defines the environment in which the generated template code will live.</summary>
<returns>The <see cref="T:System.Web.Razor.RazorEngineHost" /> which defines the environment in which the generated template code will live.</returns>
</member>
<member name="M:System.Web.Razor.RazorTemplateEngine.ParseTemplate(System.IO.TextReader)">
<summary>This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.Parses the template specified by the TextBuffer and returns its result.</summary>
<returns>The resulting parse tree.</returns>
<param name="input">The input text to parse.</param>
</member>
<member name="M:System.Web.Razor.RazorTemplateEngine.ParseTemplate(System.IO.TextReader,System.Nullable{System.Threading.CancellationToken})">
<summary>This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.Parses the template specified by the TextBuffer and returns its result.</summary>
<returns>The resulting parse tree.</returns>
<param name="input">The input text to parse.</param>
<param name="cancelToken">A token used to cancel the parser.</param>
</member>
<member name="M:System.Web.Razor.RazorTemplateEngine.ParseTemplate(System.Web.Razor.Text.ITextBuffer)">
<summary>This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.Parses the template specified by the TextBuffer and returns its result.</summary>
<returns>The resulting parse tree.</returns>
<param name="input">The input text to parse.</param>
</member>
<member name="M:System.Web.Razor.RazorTemplateEngine.ParseTemplate(System.Web.Razor.Text.ITextBuffer,System.Nullable{System.Threading.CancellationToken})">
<summary>This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.Parses the template specified by the TextBuffer and returns its result.</summary>
<returns>The resulting parse tree.</returns>
<param name="input">The input text to parse.</param>
<param name="cancelToken">A token used to cancel the parser.</param>
</member>
<member name="M:System.Web.Razor.RazorTemplateEngine.ParseTemplateCore(System.Web.Razor.Text.ITextDocument,System.Nullable{System.Threading.CancellationToken})">
<summary>This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.Parses the template core.</summary>
<returns>The resulting parse tree.</returns>
<param name="input">The input text to parse.</param>
<param name="cancelToken">A token used to cancel the parser.</param>
</member>
<member name="T:System.Web.Razor.StateMachine`1">
<summary>This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.Represents the state of the machine.</summary>
<typeparam name="TReturn">The generic type Return.</typeparam>
</member>
<member name="M:System.Web.Razor.StateMachine`1.#ctor">
<summary>This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.Initializes a new instance of the <see cref="T:System.Web.Razor.StateMachine`1" /> class.</summary>
</member>
<member name="P:System.Web.Razor.StateMachine`1.CurrentState">
<summary>This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.Gets or sets the current state of the machine.</summary>
<returns>The current state of the machine.</returns>
</member>
<member name="P:System.Web.Razor.StateMachine`1.StartState">
<summary>This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.Gets the starting state of the machine.</summary>
<returns>The starting state of the machine.</returns>
</member>
<member name="M:System.Web.Razor.StateMachine`1.Stay">
<summary>This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.Stays into the machine during the transition.</summary>
<returns>Transition of the state machine.</returns>
</member>
<member name="M:System.Web.Razor.StateMachine`1.Stay(`0)">
<summary>This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.Stays into the machine during the transition with the specified output.</summary>
<returns>The output of the transition.</returns>
<param name="output">The output.</param>
</member>
<member name="M:System.Web.Razor.StateMachine`1.Stop">
<summary>This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.Disables the machine upon transition.</summary>
<returns>The machine to stop.</returns>
</member>
<member name="M:System.Web.Razor.StateMachine`1.Transition(System.Web.Razor.StateMachine{`0}.State)">
<summary>This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.Indicates the new transition of the state.</summary>
<returns>The new transition of the state.</returns>
<param name="newState">The new state.</param>
</member>
<member name="M:System.Web.Razor.StateMachine`1.Transition(`0,System.Web.Razor.StateMachine{`0}.State)">
<summary>This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.Indicates the new transition of the state with the specified output.</summary>
<returns>The new transition of the state with the specified output.</returns>
<param name="output">The output.</param>
<param name="newState">The new state.</param>
</member>
<member name="M:System.Web.Razor.StateMachine`1.Turn">
<summary>This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.Describes the turning process of the state.</summary>
<returns>The turning process of the state.</returns>
</member>
<member name="T:System.Web.Razor.StateMachine`1.State">
<summary>This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.</summary>
</member>
<member name="T:System.Web.Razor.StateMachine`1.StateResult">
<summary>This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.Represents the state result.</summary>
</member>
<member name="M:System.Web.Razor.StateMachine`1.StateResult.#ctor(System.Web.Razor.StateMachine{`0}.State)">
<summary>This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.Initializes a new instance of the <see cref="T:System.Web.Razor.StateMachine`1.StateResult" /> class.</summary>
<param name="next">The next output.</param>
</member>
<member name="M:System.Web.Razor.StateMachine`1.StateResult.#ctor(`0,System.Web.Razor.StateMachine{`0}.State)">
<summary>This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.Initializes a new instance of the <see cref="T:System.Web.Razor.StateMachine`1.StateResult" /> class.</summary>
<param name="output">The output.</param>
<param name="next">The next state.</param>
</member>
<member name="P:System.Web.Razor.StateMachine`1.StateResult.HasOutput">
<summary>This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.Gets or sets a value indicating whether the state has output.</summary>
<returns>true if the state has output; otherwise, false.</returns>
</member>
<member name="P:System.Web.Razor.StateMachine`1.StateResult.Next">
<summary>This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.Gets or sets the next state in the machine.</summary>
<returns>The next state in the machine.</returns>
</member>
<member name="P:System.Web.Razor.StateMachine`1.StateResult.Output">
<summary>This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.Gets or sets the output.</summary>
<returns>The <see cref="T:System.Web.Razor.StateMachine`1.State" /> representing the output.</returns>
</member>
<member name="T:System.Web.Razor.VBRazorCodeLanguage">
<summary>This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.Represents a language generator and provider of the VB razor code.</summary>
</member>
<member name="M:System.Web.Razor.VBRazorCodeLanguage.#ctor">
<summary>This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.Initializes a new instance of the <see cref="T:System.Web.Razor.VBRazorCodeLanguage" /> class.</summary>
</member>
<member name="P:System.Web.Razor.VBRazorCodeLanguage.CodeDomProviderType">
<summary>This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.Gets the type of CodeDomProvider.</summary>
<returns>The type of CodeDomProvider.</returns>
</member>
<member name="M:System.Web.Razor.VBRazorCodeLanguage.CreateCodeGenerator(System.String,System.String,System.String,System.Web.Razor.RazorEngineHost)">
<summary>This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.Creates the code language generator.</summary>
<returns>The code language generator.</returns>
<param name="className">The name of the class.</param>
<param name="rootNamespaceName">The root namespace name.</param>
<param name="sourceFileName">The source File name.</param>
<param name="host">The <see cref="T:System.Web.Razor.RazorEngineHost" />.</param>
</member>
<member name="M:System.Web.Razor.VBRazorCodeLanguage.CreateCodeParser">
<summary>This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.Creates a code parser in a <see cref="T:System.Web.Razor.Parser.ParserBase" />.</summary>
<returns>A code parser in a <see cref="T:System.Web.Razor.Parser.ParserBase" />.</returns>
</member>
<member name="P:System.Web.Razor.VBRazorCodeLanguage.LanguageName">
<summary>This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.Gets the language name.</summary>
<returns>The language name.</returns>
</member>
<member name="T:System.Web.Razor.Editor.EditorHints">
<summary>This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.</summary>
</member>
<member name="F:System.Web.Razor.Editor.EditorHints.LayoutPage">
<summary>This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.</summary>
</member>
<member name="F:System.Web.Razor.Editor.EditorHints.None">
<summary>This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.</summary>
</member>
<member name="F:System.Web.Razor.Editor.EditorHints.VirtualPath">
<summary>This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.</summary>
</member>
<member name="T:System.Web.Razor.Editor.EditResult">
<summary>This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.Represents the editing result of the Editor.</summary>
</member>
<member name="M:System.Web.Razor.Editor.EditResult.#ctor(System.Web.Razor.PartialParseResult,System.Web.Razor.Parser.SyntaxTree.SpanBuilder)">
<summary>This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.Initializes a new instance of the <see cref="T:System.Web.Razor.Editor.EditResult" /> class.</summary>
<param name="result">The partial parse result.</param>
<param name="editedSpan">The edited span builder.</param>
</member>
<member name="P:System.Web.Razor.Editor.EditResult.EditedSpan">
<summary>This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.Gets or sets the edited span of the <see cref="T:System.Web.Razor.Parser.SyntaxTree.SpanBuilder" />.</summary>
<returns>The edited span of the <see cref="T:System.Web.Razor.Parser.SyntaxTree.SpanBuilder" />.</returns>
</member>
<member name="P:System.Web.Razor.Editor.EditResult.Result">
<summary>This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.Gets or sets the partial parse result.</summary>
<returns>The partial parse result.</returns>
</member>
<member name="T:System.Web.Razor.Editor.ImplicitExpressionEditHandler">
<summary>This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.Provides edit handler for implicit expression.</summary>
</member>
<member name="M:System.Web.Razor.Editor.ImplicitExpressionEditHandler.#ctor(System.Func{System.String,System.Collections.Generic.IEnumerable{System.Web.Razor.Tokenizer.Symbols.ISymbol}},System.Collections.Generic.ISet{System.String},System.Boolean)">
<summary>Initializes a new instance of the <see cref="T:System.Web.Razor.Editor.ImplicitExpressionEditHandler" /> class.</summary>
<param name="tokenizer">The tokenizer.</param>
<param name="keywords">The keywords.</param>
<param name="acceptTrailingDot">true to accept trailing dot; otherwise, false.</param>
</member>
<member name="P:System.Web.Razor.Editor.ImplicitExpressionEditHandler.AcceptTrailingDot">
<summary>This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.Gets or sets a value indicating whether the expression accepts trailing dot.</summary>
<returns>true if the expression accepts trailing dot; otherwise, false.</returns>
</member>
<member name="M:System.Web.Razor.Editor.ImplicitExpressionEditHandler.CanAcceptChange(System.Web.Razor.Parser.SyntaxTree.Span,System.Web.Razor.Text.TextChange)">
<summary>This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.Indicates the parse that can accept change.</summary>
<returns>The partial parse result.</returns>
<param name="target">The target.</param>
<param name="normalizedChange">The normalized change.</param>
</member>
<member name="M:System.Web.Razor.Editor.ImplicitExpressionEditHandler.Equals(System.Object)">
<summary>This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.Indicates whether the specified object is equal to the current object.</summary>
<returns>true if the specified object is equal to the current objet; otherwise, false.</returns>
<param name="obj">The object to compare to.</param>
</member>
<member name="M:System.Web.Razor.Editor.ImplicitExpressionEditHandler.GetHashCode">
<summary>This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.Retrieves the hash code for this current instance.</summary>
<returns>The hash code for this current instance.</returns>
</member>
<member name="P:System.Web.Razor.Editor.ImplicitExpressionEditHandler.Keywords">
<summary>This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.Gets or sets the keywords associated with the expression.</summary>
<returns>The keywords associated with the expression.</returns>
</member>
<member name="M:System.Web.Razor.Editor.ImplicitExpressionEditHandler.ToString">
<summary>This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.Returns a string representation of this current instance.</summary>
<returns>A string representation of this current instance.</returns>
</member>
<member name="T:System.Web.Razor.Editor.SingleLineMarkupEditHandler">
<summary>This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.Represents the handler editor for this webpages.</summary>
</member>
<member name="M:System.Web.Razor.Editor.SingleLineMarkupEditHandler.#ctor(System.Func{System.String,System.Collections.Generic.IEnumerable{System.Web.Razor.Tokenizer.Symbols.ISymbol}})">
<summary>Initializes a new instance of the <see cref="T:System.Web.Razor.Editor.SingleLineMarkupEditHandler" /> class.</summary>
<param name="tokenizer">The tokenizer symbols.</param>
</member>
<member name="M:System.Web.Razor.Editor.SingleLineMarkupEditHandler.#ctor(System.Func{System.String,System.Collections.Generic.IEnumerable{System.Web.Razor.Tokenizer.Symbols.ISymbol}},System.Web.Razor.Parser.SyntaxTree.AcceptedCharacters)">
<summary>Initializes a new instance of the <see cref="T:System.Web.Razor.Editor.SingleLineMarkupEditHandler" /> class.</summary>
<param name="tokenizer">The tokenizer symbols.</param>
<param name="accepted">The accepted characters.</param>
</member>
<member name="T:System.Web.Razor.Editor.SpanEditHandler">
<summary>This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code. Provides methods for handling the span edits.</summary>
</member>
<member name="M:System.Web.Razor.Editor.SpanEditHandler.#ctor(System.Func{System.String,System.Collections.Generic.IEnumerable{System.Web.Razor.Tokenizer.Symbols.ISymbol}})">
<summary>This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code. Initializes a new instance of the <see cref="T:System.Web.Razor.Editor.SpanEditHandler" /> class.</summary>
<param name="tokenizer">The method used to parse string into tokens.</param>
</member>
<member name="M:System.Web.Razor.Editor.SpanEditHandler.#ctor(System.Func{System.String,System.Collections.Generic.IEnumerable{System.Web.Razor.Tokenizer.Symbols.ISymbol}},System.Web.Razor.Parser.SyntaxTree.AcceptedCharacters)">
<summary>This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code. Initializes a new instance of the <see cref="T:System.Web.Razor.Editor.SpanEditHandler" /> class.</summary>
<param name="tokenizer">The method used to parse string into tokens.</param>
<param name="accepted">One of the values of the <see cref="T:System.Web.Razor.Parser.SyntaxTree.AcceptedCharacters" /> enumeration.</param>
</member>
<member name="P:System.Web.Razor.Editor.SpanEditHandler.AcceptedCharacters">
<summary>This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code. Gets or sets a value that specifies the accepted characters.</summary>
<returns>One of the values of the <see cref="T:System.Web.Razor.Parser.SyntaxTree.AcceptedCharacters" /> enumeration.</returns>
</member>
<member name="M:System.Web.Razor.Editor.SpanEditHandler.ApplyChange(System.Web.Razor.Parser.SyntaxTree.Span,System.Web.Razor.Text.TextChange)">
<summary>This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code. Applies the text change to the span.</summary>
<returns>The result of the apply operation.</returns>
<param name="target">The span to apply changes to.</param>
<param name="change">The change to apply.</param>
</member>
<member name="M:System.Web.Razor.Editor.SpanEditHandler.ApplyChange(System.Web.Razor.Parser.SyntaxTree.Span,System.Web.Razor.Text.TextChange,System.Boolean)">
<summary>This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code. Applies the text change to the span.</summary>
<returns>The result of the apply operation.</returns>
<param name="target">The span to apply changes to.</param>
<param name="change">The change to apply.</param>
<param name="force">true to accept partial result; otherwise, false.</param>
</member>
<member name="M:System.Web.Razor.Editor.SpanEditHandler.CanAcceptChange(System.Web.Razor.Parser.SyntaxTree.Span,System.Web.Razor.Text.TextChange)">
<summary>This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code. Determines whether the span can accept the specified change.</summary>
<returns>true if the span can accept the specified change; otherwise, false.</returns>
<param name="target">The span to check.</param>
<param name="normalizedChange">The change to apply.</param>
</member>
<member name="M:System.Web.Razor.Editor.SpanEditHandler.CreateDefault">
<summary>This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code. Creates a new default span edit handler.</summary>
<returns>A newly created default span edit handler.</returns>
</member>
<member name="M:System.Web.Razor.Editor.SpanEditHandler.CreateDefault(System.Func{System.String,System.Collections.Generic.IEnumerable{System.Web.Razor.Tokenizer.Symbols.ISymbol}})">
<summary>This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code. Creates a new default span edit handler.</summary>
<returns>A newly created default span edit handler.</returns>
<param name="tokenizer">The method used to parse string into tokens.</param>
</member>
<member name="P:System.Web.Razor.Editor.SpanEditHandler.EditorHints">
<summary>This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code. Gets or sets the editor hints.</summary>
<returns>The editor hints.</returns>
</member>
<member name="M:System.Web.Razor.Editor.SpanEditHandler.Equals(System.Object)">
<summary>This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code. Determines whether this instance is equal to a specified object.</summary>
<returns>true if the object is equal to the this instance; otherwise, false.</returns>
<param name="obj">The object to compare with this instance.</param>
</member>
<member name="M:System.Web.Razor.Editor.SpanEditHandler.GetHashCode">
<summary>This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code. Returns the hash code for this instance.</summary>
<returns>The hash code for this instance.</returns>
</member>
<member name="M:System.Web.Razor.Editor.SpanEditHandler.GetOldText(System.Web.Razor.Parser.SyntaxTree.Span,System.Web.Razor.Text.TextChange)">
<summary>This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code. Gets the old text from the span content.</summary>
<returns>The old text from the span content.</returns>
<param name="target">The span to get old text from.</param>
<param name="change">The text change which contains the location of the old text.</param>
</member>
<member name="M:System.Web.Razor.Editor.SpanEditHandler.IsAtEndOfFirstLine(System.Web.Razor.Parser.SyntaxTree.Span,System.Web.Razor.Text.TextChange)">
<summary>This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code. Determines whether the specified change is at the end of first line of the span content.</summary>
<returns>true if the specified change is at the end of first line of the span content; otherwise, false.</returns>
<param name="target">The span to check.</param>
<param name="change">The change to check.</param>
</member>
<member name="M:System.Web.Razor.Editor.SpanEditHandler.IsAtEndOfSpan(System.Web.Razor.Parser.SyntaxTree.Span,System.Web.Razor.Text.TextChange)">
<summary>This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code. Determines whether the specified change is at the end of the span.</summary>
<returns>true if the specified change is at the end of the span; otherwise, false.</returns>
<param name="target">The span to check.</param>
<param name="change">The change to chek.</param>
</member>
<member name="M:System.Web.Razor.Editor.SpanEditHandler.IsEndDeletion(System.Web.Razor.Parser.SyntaxTree.Span,System.Web.Razor.Text.TextChange)">
<summary>This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code. Determines whether the specified change is at the end the span content and for deletion.</summary>
<returns>true if the specified change is at the end the span content and for deletion; otherwise, false.</returns>
<param name="target">The span to check.</param>
<param name="change">The change to check.</param>
</member>
<member name="M:System.Web.Razor.Editor.SpanEditHandler.IsEndInsertion(System.Web.Razor.Parser.SyntaxTree.Span,System.Web.Razor.Text.TextChange)">
<summary>This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code. Determines whether the specified change is at the end the span content and for insertion.</summary>
<returns>true if the specified change is at the end the span content and for insertion; otherwise, false.</returns>
<param name="target">The span to check.</param>
<param name="change">The change to check.</param>
</member>
<member name="M:System.Web.Razor.Editor.SpanEditHandler.IsEndReplace(System.Web.Razor.Parser.SyntaxTree.Span,System.Web.Razor.Text.TextChange)">
<summary>This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code. Determines whether the specified change is at the end the span content and for replacement.</summary>
<returns>true if the specified change is at the end the span content and for replacement; otherwise, false.</returns>
<param name="target">The span to check.</param>
<param name="change">The change to check.</param>
</member>
<member name="M:System.Web.Razor.Editor.SpanEditHandler.OwnsChange(System.Web.Razor.Parser.SyntaxTree.Span,System.Web.Razor.Text.TextChange)">
<summary>This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code. Determines whether the span owns the specified change.</summary>
<returns>true if the span owns the specified change; otherwise, false.</returns>
<param name="target">The span to check.</param>
<param name="change">The change to check.</param>
</member>
<member name="P:System.Web.Razor.Editor.SpanEditHandler.Tokenizer">
<summary>This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code. Gets or sets the method used to parse string into tokens. </summary>
<returns>The method used to parse string into tokens.</returns>
</member>
<member name="M:System.Web.Razor.Editor.SpanEditHandler.ToString">
<summary>This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code. Returns the string representation of the span edit handler.</summary>
<returns>The string representation of the span edit handler.</returns>
</member>
<member name="M:System.Web.Razor.Editor.SpanEditHandler.UpdateSpan(System.Web.Razor.Parser.SyntaxTree.Span,System.Web.Razor.Text.TextChange)">
<summary>This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code. Updates the span using the normalized change.</summary>
<returns>The new span builder for the specified target.</returns>
<param name="target">The span to update.</param>
<param name="normalizedChange">The normalized change.</param>
</member>
<member name="T:System.Web.Razor.Generator.AddImportCodeGenerator">
<summary>This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.Represents the added import code generator for the razor.</summary>
</member>
<member name="M:System.Web.Razor.Generator.AddImportCodeGenerator.#ctor(System.String,System.Int32)">
<summary>This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.Initializes a new instance of the <see cref="T:System.Web.Razor.Generator.AddImportCodeGenerator" /> class.</summary>
<param name="ns">The string namespace.</param>
<param name="namespaceKeywordLength">The length of the keyword namespace.</param>
</member>
<member name="M:System.Web.Razor.Generator.AddImportCodeGenerator.Equals(System.Object)">
<summary>This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.Determines whether two object instances are equal.</summary>
<returns>true if the specified object is equal to the current object; otherwise, false.</returns>
<param name="obj">The object to compare with the current object.</param>
</member>
<member name="M:System.Web.Razor.Generator.AddImportCodeGenerator.GenerateCode(System.Web.Razor.Parser.SyntaxTree.Span,System.Web.Razor.Generator.CodeGeneratorContext)">
<summary>This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.Generates code with the specified parameters using the added import code generator.</summary>
<param name="target">The target span.</param>
<param name="context">The code generator context.</param>
</member>
<member name="M:System.Web.Razor.Generator.AddImportCodeGenerator.GetHashCode">
<summary>This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.Returns the hash code for this instance.</summary>
<returns>The hash code for this instance.</returns>
</member>
<member name="P:System.Web.Razor.Generator.AddImportCodeGenerator.Namespace">
<summary>This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.Gets the string namespace of the generator to add import code generator.</summary>
<returns>The string namespace of the generator to add import code generator.</returns>
</member>
<member name="P:System.Web.Razor.Generator.AddImportCodeGenerator.NamespaceKeywordLength">
<summary>This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.Gets or sets the length of keyword namespace for the code generator.</summary>
<returns>The length of keyword namespace for the code generator.</returns>
</member>
<member name="M:System.Web.Razor.Generator.AddImportCodeGenerator.ToString">
<summary>This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.Returns a string that represents the current object.</summary>
<returns>A string that represents the current object.</returns>
</member>
<member name="T:System.Web.Razor.Generator.AttributeBlockCodeGenerator">
<summary>This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.Represents the attributes of the block code generator.</summary>
</member>
<member name="M:System.Web.Razor.Generator.AttributeBlockCodeGenerator.#ctor(System.String,System.Web.Razor.Text.LocationTagged{System.String},System.Web.Razor.Text.LocationTagged{System.String})">
<summary>This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.Initializes a new instance of the <see cref="T:System.Web.Razor.Generator.AttributeBlockCodeGenerator" /> class.</summary>
<param name="name">The name.</param>
<param name="prefix">The prefix string.</param>
<param name="suffix">The suffix string.</param>
</member>
<member name="M:System.Web.Razor.Generator.AttributeBlockCodeGenerator.Equals(System.Object)">
<summary>This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.Determines whether the specified object is equal to the current object.</summary>
<returns>true if the specified object is equal to the current object; otherwise, false.</returns>
<param name="obj">The object to compare with the current object.</param>
</member>
<member name="M:System.Web.Razor.Generator.AttributeBlockCodeGenerator.GenerateEndBlockCode(System.Web.Razor.Parser.SyntaxTree.Block,System.Web.Razor.Generator.CodeGeneratorContext)">
<summary>This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.Generates code to end the block using the specified parameters.</summary>
<param name="target">The target block.</param>
<param name="context">The code generator context.</param>
</member>
<member name="M:System.Web.Razor.Generator.AttributeBlockCodeGenerator.GenerateStartBlockCode(System.Web.Razor.Parser.SyntaxTree.Block,System.Web.Razor.Generator.CodeGeneratorContext)">
<summary>This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.Generates code to start the block using the specified parameters.</summary>
<param name="target">The target block.</param>
<param name="context">The code generator context.</param>
</member>
<member name="M:System.Web.Razor.Generator.AttributeBlockCodeGenerator.GetHashCode">
<summary>This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.Returns the hash code for this code generator.</summary>
<returns>The hash code for this code generator.</returns>
</member>
<member name="P:System.Web.Razor.Generator.AttributeBlockCodeGenerator.Name">
<summary>This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.Gets the string name of the <see cref="T:System.Web.Razor.Generator.AttributeBlockCodeGenerator" />.</summary>
<returns>The string name of the <see cref="T:System.Web.Razor.Generator.AttributeBlockCodeGenerator" />.</returns>
</member>
<member name="P:System.Web.Razor.Generator.AttributeBlockCodeGenerator.Prefix">
<summary>This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.Gets the prefix of the code generator.</summary>
<returns>The prefix of the code generator.</returns>
</member>
<member name="P:System.Web.Razor.Generator.AttributeBlockCodeGenerator.Suffix">
<summary>This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.Gets the suffix for the code generator.</summary>
<returns>The suffix for the code generator.</returns>
</member>
<member name="M:System.Web.Razor.Generator.AttributeBlockCodeGenerator.ToString">
<summary>This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.Returns a string that represents the current object.</summary>
<returns>A string that represents the current object.</returns>
</member>
<member name="T:System.Web.Razor.Generator.BlockCodeGenerator">
<summary>This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.Represent the block code generator for this razor syntax.</summary>
</member>
<member name="M:System.Web.Razor.Generator.BlockCodeGenerator.#ctor">
<summary>This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.Initializes a new instance of the <see cref="T:System.Web.Razor.Generator.BlockCodeGenerator" /> class.</summary>
</member>
<member name="M:System.Web.Razor.Generator.BlockCodeGenerator.Equals(System.Object)">
<summary>This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.Determines whether the specified object is equal to the current object.</summary>
<returns>true if the specified object is equal to the current object; otherwise, false.</returns>
<param name="obj">The object to compare with the current object.</param>
</member>
<member name="M:System.Web.Razor.Generator.BlockCodeGenerator.GenerateEndBlockCode(System.Web.Razor.Parser.SyntaxTree.Block,System.Web.Razor.Generator.CodeGeneratorContext)">
<summary>This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.Generates the end of the block code generator for this razor syntax.</summary>
<param name="target">The target block.</param>
<param name="context">The code generator context.</param>
</member>
<member name="M:System.Web.Razor.Generator.BlockCodeGenerator.GenerateStartBlockCode(System.Web.Razor.Parser.SyntaxTree.Block,System.Web.Razor.Generator.CodeGeneratorContext)">
<summary>This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.Generates the start of the block code generator for this razor syntax.</summary>
<param name="target">The target block.</param>
<param name="context">The code generator context.</param>
</member>
<member name="M:System.Web.Razor.Generator.BlockCodeGenerator.GetHashCode">
<summary>This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.Returns a hash code for the block code generator.</summary>
<returns>A hash code for the block code generator.</returns>
</member>
<member name="F:System.Web.Razor.Generator.BlockCodeGenerator.Null">
<summary>This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.Represents a null value for the block code generator.</summary>
</member>
<member name="T:System.Web.Razor.Generator.CodeGenerationCompleteEventArgs">
<summary>This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.Represents the completion of event arguments for the code generation.</summary>
</member>
<member name="M:System.Web.Razor.Generator.CodeGenerationCompleteEventArgs.#ctor(System.String,System.String,System.CodeDom.CodeCompileUnit)">
<summary>This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.Initializes a new instance of the <see cref="T:System.Web.Razor.Generator.CodeGenerationCompleteEventArgs" /> class.</summary>
<param name="virtualPath">The virtual path string.</param>
<param name="physicalPath">The physical path string.</param>
<param name="generatedCode">The generated code compile unit.</param>
</member>
<member name="P:System.Web.Razor.Generator.CodeGenerationCompleteEventArgs.GeneratedCode">
<summary>This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.Gets the generated code to complete the event argument.</summary>
<returns>The generated code to complete the event argument.</returns>
</member>
<member name="P:System.Web.Razor.Generator.CodeGenerationCompleteEventArgs.PhysicalPath">
<summary>This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.Gets the physical path for the code generation.</summary>
<returns>The physical path for the code generation.</returns>
</member>
<member name="P:System.Web.Razor.Generator.CodeGenerationCompleteEventArgs.VirtualPath">
<summary>This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.Gets the virtual path of the code generation.</summary>
<returns>The virtual path of the code generation.</returns>
</member>
<member name="T:System.Web.Razor.Generator.CodeGeneratorContext">
<summary>This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code. Represents the context of the code generator.</summary>
</member>
<member name="M:System.Web.Razor.Generator.CodeGeneratorContext.AddCodeMapping(System.Web.Razor.Text.SourceLocation,System.Int32,System.Int32)">
<summary>This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code. Adds a new generated code mapping to the collection.</summary>
<returns>The collection index of the newly added code mapping.</returns>
<param name="sourceLocation">The source location of the generated code mapping.</param>
<param name="generatedCodeStart">The code start of the generated code mapping.</param>
<param name="generatedCodeLength">The length of the generated code mapping.</param>
</member>
<member name="M:System.Web.Razor.Generator.CodeGeneratorContext.AddContextCall(System.Web.Razor.Parser.SyntaxTree.Span,System.String,System.Boolean)">
<summary>This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code. Adds a code statement for a context call on the specified method.</summary>
<param name="contentSpan">The content span.</param>
<param name="methodName">The name of the method to invoke a context call.</param>
<param name="isLiteral">true to specify that the method parameter is literal; otherwise, false.</param>
</member>
<member name="M:System.Web.Razor.Generator.CodeGeneratorContext.AddDesignTimeHelperStatement(System.CodeDom.CodeSnippetStatement)">
<summary>This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code. Adds a code statement that inserts the Razor design time helpers method in the specified code statement.</summary>
<param name="statement">The code statement that receives the code insertion.</param>
</member>
<member name="M:System.Web.Razor.Generator.CodeGeneratorContext.AddStatement(System.String)">
<summary>This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code. Adds the specified code statement to the body of the target method.</summary>
<param name="generatedCode">The code statement to add the target method.</param>
</member>
<member name="M:System.Web.Razor.Generator.CodeGeneratorContext.AddStatement(System.String,System.CodeDom.CodeLinePragma)">
<summary>This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code. Adds the specified code statement to the body of the target method.</summary>
<param name="body">The code statement to add the target method.</param>
<param name="pragma">The line pragma.</param>
</member>
<member name="M:System.Web.Razor.Generator.CodeGeneratorContext.BufferStatementFragment(System.String)">
<summary>This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code. Appends the specified fragment to the current buffered statement.</summary>
<param name="fragment">The fragment to add.</param>
</member>
<member name="M:System.Web.Razor.Generator.CodeGeneratorContext.BufferStatementFragment(System.String,System.Web.Razor.Parser.SyntaxTree.Span)">
<summary>This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code. Appends the specified fragment to the current buffered statement.</summary>
<param name="fragment">The fragment to add.</param>
<param name="sourceSpan">The source span for the <paramref name="fragment" />.</param>
</member>
<member name="M:System.Web.Razor.Generator.CodeGeneratorContext.BufferStatementFragment(System.Web.Razor.Parser.SyntaxTree.Span)">
<summary>This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code. Appends the content of the span to the current buffered statement.</summary>
<param name="sourceSpan">The source span whose content is to be added.</param>
</member>
<member name="M:System.Web.Razor.Generator.CodeGeneratorContext.ChangeStatementCollector(System.Action{System.String,System.CodeDom.CodeLinePragma})">
<summary>Assigns a new statement collector and returns a disposable action that restores the old statement collector.</summary>
<returns>A disposable action that restores the old statement collector.</returns>
<param name="collector">The new statement collector.</param>
</member>
<member name="P:System.Web.Razor.Generator.CodeGeneratorContext.CodeMappings">
<summary>This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code. Gets or sets the dictionary collection of generated code mapping.</summary>
<returns>The dictionary collection of generated code mapping.</returns>
</member>
<member name="P:System.Web.Razor.Generator.CodeGeneratorContext.CompileUnit">
<summary>This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code. Gets or sets the code compile unit that will hold the program graph.</summary>
<returns>The code compile unit that will hold the program graph.</returns>
</member>
<member name="M:System.Web.Razor.Generator.CodeGeneratorContext.Create(System.Web.Razor.RazorEngineHost,System.String,System.String,System.String,System.Boolean)">
<summary>This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code. Creates a new instance of the <see cref="T:System.Web.Razor.Generator.CodeGeneratorContext" /> class.</summary>
<returns>The newly created instance of the code generator context.</returns>
<param name="host">The Razor engine host.</param>
<param name="className">The class name for the generated class type declaration.</param>
<param name="rootNamespace">The name for the generated namespace declaration.</param>
<param name="sourceFile">The source file.</param>
<param name="shouldGenerateLinePragmas">true to enable the generation of line pragmas; otherwise, false.</param>
</member>
<member name="P:System.Web.Razor.Generator.CodeGeneratorContext.CurrentBufferedStatement">
<summary>This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code. Gets the current buffered statement.</summary>
<returns>The current buffered statement.</returns>
</member>
<member name="M:System.Web.Razor.Generator.CodeGeneratorContext.EnsureExpressionHelperVariable">
<summary>This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code. Adds the expression helper variable to the generated class if not yet added,</summary>
</member>
<member name="M:System.Web.Razor.Generator.CodeGeneratorContext.FlushBufferedStatement">
<summary>This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code. Flushes the current buffered statement.</summary>
</member>
<member name="P:System.Web.Razor.Generator.CodeGeneratorContext.GeneratedClass">
<summary>This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code. Gets or sets the generated class type declaration.</summary>
<returns>The generated class type declaration.</returns>
</member>
<member name="M:System.Web.Razor.Generator.CodeGeneratorContext.GenerateLinePragma(System.Web.Razor.Parser.SyntaxTree.Span)">
<summary>This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code. Generates the line pragma for the specified source.</summary>
<returns>The line pragma for the specified source.</returns>
<param name="target">The source span.</param>
</member>
<member name="M:System.Web.Razor.Generator.CodeGeneratorContext.GenerateLinePragma(System.Web.Razor.Parser.SyntaxTree.Span,System.Int32)">
<summary>This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code. Generates the line pragma for the source.</summary>
<returns>The line pragma for the specified source.</returns>
<param name="target">The source span.</param>
<param name="generatedCodeStart">The start index of code.</param>
</member>
<member name="M:System.Web.Razor.Generator.CodeGeneratorContext.GenerateLinePragma(System.Web.Razor.Parser.SyntaxTree.Span,System.Int32,System.Int32)">
<summary>This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code. Generates the line pragma for the source.</summary>
<returns>The line pragma for the specified source.</returns>
<param name="target">The source span.</param>
<param name="generatedCodeStart">The start index of code.</param>
<param name="codeLength">The length of code.</param>
</member>
<member name="M:System.Web.Razor.Generator.CodeGeneratorContext.GenerateLinePragma(System.Web.Razor.Text.SourceLocation,System.Int32,System.Int32)">
<summary>This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code. Generates the line pragma for the source.</summary>
<returns>The line pragma for the specified source.</returns>
<param name="start">The source location.</param>
<param name="generatedCodeStart">The start index of code.</param>
<param name="codeLength">The length of code.</param>
</member>
<member name="P:System.Web.Razor.Generator.CodeGeneratorContext.Host">
<summary>This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code. Gets or sets the Razor engine host.</summary>
<returns>The Razor engine host.</returns>
</member>
<member name="M:System.Web.Razor.Generator.CodeGeneratorContext.MarkEndOfGeneratedCode">
<summary>This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code. Marks the end of generated code.</summary>
</member>
<member name="M:System.Web.Razor.Generator.CodeGeneratorContext.MarkStartOfGeneratedCode">
<summary>This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code. Marks the start of generated code.</summary>
</member>
<member name="P:System.Web.Razor.Generator.CodeGeneratorContext.Namespace">
<summary>This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code. Gets or sets the generated namespace declaration.</summary>
<returns>The generated namespace declaration.</returns>
</member>
<member name="P:System.Web.Razor.Generator.CodeGeneratorContext.SourceFile">
<summary>This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code. Gets or sets the source file.</summary>
<returns>The source file.</returns>
</member>
<member name="P:System.Web.Razor.Generator.CodeGeneratorContext.TargetMethod">
<summary>This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code. Gets or sets the generated member method.</summary>
<returns>The generated member method.</returns>
</member>
<member name="P:System.Web.Razor.Generator.CodeGeneratorContext.TargetWriterName">
<summary>This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code. Gets or sets the name of text writer.</summary>
<returns>The name of text writer.</returns>
</member>
<member name="T:System.Web.Razor.Generator.CSharpRazorCodeGenerator">
<summary>This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code. Represents a Razor code generator for C# language.</summary>
</member>
<member name="M:System.Web.Razor.Generator.CSharpRazorCodeGenerator.#ctor(System.String,System.String,System.String,System.Web.Razor.RazorEngineHost)">
<summary>This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code. Initializes a new instance of the <see cref="T:System.Web.Razor.Generator.CSharpRazorCodeGenerator" /> class.</summary>
<param name="className">The class name for the generated class type declaration.</param>
<param name="rootNamespaceName">The name for the generated namespace declaration.</param>
<param name="sourceFileName">The source file.</param>
<param name="host">The Razor engine host.</param>
</member>
<member name="M:System.Web.Razor.Generator.CSharpRazorCodeGenerator.Initialize(System.Web.Razor.Generator.CodeGeneratorContext)">
<summary>This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code. Initializes the context for this code generator.</summary>
<param name="context">The context for this code generator.</param>
</member>
<member name="T:System.Web.Razor.Generator.DynamicAttributeBlockCodeGenerator">
<summary>This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.Represents the dynamic attributes of the block code generator.</summary>
</member>