forked from reactiveui/ReactiveUI
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathICSharpCode.NRefactory.xml
More file actions
5875 lines (5859 loc) · 295 KB
/
ICSharpCode.NRefactory.xml
File metadata and controls
5875 lines (5859 loc) · 295 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
<?xml version="1.0"?>
<doc>
<assembly>
<name>ICSharpCode.NRefactory</name>
</assembly>
<members>
<member name="T:ICSharpCode.NRefactory.Documentation.DocumentationComment">
<summary>
Represents a documentation comment.
</summary>
</member>
<member name="M:ICSharpCode.NRefactory.Documentation.DocumentationComment.#ctor(ICSharpCode.NRefactory.Editor.ITextSource,ICSharpCode.NRefactory.TypeSystem.ITypeResolveContext)">
<summary>
Creates a new DocumentationComment.
</summary>
<param name="xml">The XML text.</param>
<param name="context">Context for resolving cref attributes.</param>
</member>
<member name="M:ICSharpCode.NRefactory.Documentation.DocumentationComment.#ctor(System.String,ICSharpCode.NRefactory.TypeSystem.ITypeResolveContext)">
<summary>
Creates a new DocumentationComment.
</summary>
<param name="xml">The XML text.</param>
<param name="context">Context for resolving cref attributes.</param>
</member>
<member name="M:ICSharpCode.NRefactory.Documentation.DocumentationComment.ResolveCref(System.String)">
<summary>
Resolves the given cref value to an entity.
Returns null if the entity is not found, or if the cref attribute is syntactically invalid.
</summary>
</member>
<member name="P:ICSharpCode.NRefactory.Documentation.DocumentationComment.Xml">
<summary>
Gets the XML code for this documentation comment.
</summary>
</member>
<member name="T:ICSharpCode.NRefactory.Documentation.GetPotentiallyNestedClassTypeReference">
<summary>
A type reference of the form 'Some.Namespace.TopLevelType.NestedType`n'.
We do not know the boundary between namespace name and top level type, so we have to try
all possibilities.
The type parameter count only applies to the innermost type, all outer types must be non-generic.
</summary>
</member>
<member name="T:ICSharpCode.NRefactory.TypeSystem.ITypeReference">
<summary>
Represents a reference to a type.
Must be resolved before it can be used as type.
</summary>
</member>
<member name="M:ICSharpCode.NRefactory.TypeSystem.ITypeReference.Resolve(ICSharpCode.NRefactory.TypeSystem.ITypeResolveContext)">
<summary>
Resolves this type reference.
</summary>
<param name="context">
Context to use for resolving this type reference.
Which kind of context is required depends on the which kind of type reference this is;
please consult the documentation of the method that was used to create this type reference,
or that of the class implementing this method.
</param>
<returns>
Returns the resolved type.
In case of an error, returns an unknown type (<see cref="F:ICSharpCode.NRefactory.TypeSystem.TypeKind.Unknown"/>).
Never returns null.
</returns>
</member>
<member name="T:ICSharpCode.NRefactory.Documentation.IDocumentationProvider">
<summary>
Provides XML documentation for entities.
</summary>
</member>
<member name="M:ICSharpCode.NRefactory.Documentation.IDocumentationProvider.GetDocumentation(ICSharpCode.NRefactory.TypeSystem.IEntity)">
<summary>
Gets the XML documentation for the specified entity.
</summary>
</member>
<member name="T:ICSharpCode.NRefactory.Documentation.IUnresolvedDocumentationProvider">
<summary>
Provides XML documentation for entities.
</summary>
</member>
<member name="M:ICSharpCode.NRefactory.Documentation.IUnresolvedDocumentationProvider.GetDocumentation(ICSharpCode.NRefactory.TypeSystem.IUnresolvedEntity)">
<summary>
Gets the XML documentation for the specified entity.
</summary>
</member>
<member name="M:ICSharpCode.NRefactory.Documentation.IUnresolvedDocumentationProvider.GetDocumentation(ICSharpCode.NRefactory.TypeSystem.IUnresolvedEntity,ICSharpCode.NRefactory.TypeSystem.IEntity)">
<summary>
Gets the XML documentation for the specified entity.
</summary>
</member>
<member name="T:ICSharpCode.NRefactory.Editor.IDocument">
<summary>
A document representing a source code file for refactoring.
Line and column counting starts at 1.
Offset counting starts at 0.
</summary>
</member>
<member name="T:ICSharpCode.NRefactory.Editor.ITextSource">
<summary>
A read-only view on a (potentially mutable) text source.
The IDocument interface derives from this interface.
</summary>
</member>
<member name="M:ICSharpCode.NRefactory.Editor.ITextSource.CreateSnapshot">
<summary>
Creates an immutable snapshot of this text source.
Unlike all other methods in this interface, this method is thread-safe.
</summary>
</member>
<member name="M:ICSharpCode.NRefactory.Editor.ITextSource.CreateSnapshot(System.Int32,System.Int32)">
<summary>
Creates an immutable snapshot of a part of this text source.
Unlike all other methods in this interface, this method is thread-safe.
</summary>
</member>
<member name="M:ICSharpCode.NRefactory.Editor.ITextSource.CreateReader">
<summary>
Creates a new TextReader to read from this text source.
</summary>
</member>
<member name="M:ICSharpCode.NRefactory.Editor.ITextSource.CreateReader(System.Int32,System.Int32)">
<summary>
Creates a new TextReader to read from this text source.
</summary>
</member>
<member name="M:ICSharpCode.NRefactory.Editor.ITextSource.GetCharAt(System.Int32)">
<summary>
Gets a character at the specified position in the document.
</summary>
<paramref name="offset">The index of the character to get.</paramref>
<exception cref="T:System.ArgumentOutOfRangeException">Offset is outside the valid range (0 to TextLength-1).</exception>
<returns>The character at the specified position.</returns>
<remarks>This is the same as Text[offset], but is more efficient because
it doesn't require creating a String object.</remarks>
</member>
<member name="M:ICSharpCode.NRefactory.Editor.ITextSource.GetText(System.Int32,System.Int32)">
<summary>
Retrieves the text for a portion of the document.
</summary>
<exception cref="T:System.ArgumentOutOfRangeException">offset or length is outside the valid range.</exception>
<remarks>This is the same as Text.Substring, but is more efficient because
it doesn't require creating a String object for the whole document.</remarks>
</member>
<member name="M:ICSharpCode.NRefactory.Editor.ITextSource.GetText(ICSharpCode.NRefactory.Editor.ISegment)">
<summary>
Retrieves the text for a portion of the document.
</summary>
<exception cref="T:System.ArgumentOutOfRangeException">offset or length is outside the valid range.</exception>
</member>
<member name="M:ICSharpCode.NRefactory.Editor.ITextSource.WriteTextTo(System.IO.TextWriter)">
<summary>
Writes the text from this document into the TextWriter.
</summary>
</member>
<member name="M:ICSharpCode.NRefactory.Editor.ITextSource.WriteTextTo(System.IO.TextWriter,System.Int32,System.Int32)">
<summary>
Writes the text from this document into the TextWriter.
</summary>
</member>
<member name="M:ICSharpCode.NRefactory.Editor.ITextSource.IndexOf(System.Char,System.Int32,System.Int32)">
<summary>
Gets the index of the first occurrence of the character in the specified array.
</summary>
<param name="c">Character to search for</param>
<param name="startIndex">Start index of the area to search.</param>
<param name="count">Length of the area to search.</param>
<returns>The first index where the character was found; or -1 if no occurrence was found.</returns>
</member>
<member name="M:ICSharpCode.NRefactory.Editor.ITextSource.IndexOfAny(System.Char[],System.Int32,System.Int32)">
<summary>
Gets the index of the first occurrence of any character in the specified array.
</summary>
<param name="anyOf">Characters to search for</param>
<param name="startIndex">Start index of the area to search.</param>
<param name="count">Length of the area to search.</param>
<returns>The first index where any character was found; or -1 if no occurrence was found.</returns>
</member>
<member name="M:ICSharpCode.NRefactory.Editor.ITextSource.IndexOf(System.String,System.Int32,System.Int32,System.StringComparison)">
<summary>
Gets the index of the first occurrence of the specified search text in this text source.
</summary>
<param name="searchText">The search text</param>
<param name="startIndex">Start index of the area to search.</param>
<param name="count">Length of the area to search.</param>
<param name="comparisonType">String comparison to use.</param>
<returns>The first index where the search term was found; or -1 if no occurrence was found.</returns>
</member>
<member name="M:ICSharpCode.NRefactory.Editor.ITextSource.LastIndexOf(System.Char,System.Int32,System.Int32)">
<summary>
Gets the index of the last occurrence of the specified character in this text source.
</summary>
<param name="c">The search character</param>
<param name="startIndex">Start index of the area to search.</param>
<param name="count">Length of the area to search.</param>
<returns>The last index where the search term was found; or -1 if no occurrence was found.</returns>
<remarks>The search proceeds backwards from (startIndex+count) to startIndex.
This is different than the meaning of the parameters on string.LastIndexOf!</remarks>
</member>
<member name="M:ICSharpCode.NRefactory.Editor.ITextSource.LastIndexOf(System.String,System.Int32,System.Int32,System.StringComparison)">
<summary>
Gets the index of the last occurrence of the specified search text in this text source.
</summary>
<param name="searchText">The search text</param>
<param name="startIndex">Start index of the area to search.</param>
<param name="count">Length of the area to search.</param>
<param name="comparisonType">String comparison to use.</param>
<returns>The last index where the search term was found; or -1 if no occurrence was found.</returns>
<remarks>The search proceeds backwards from (startIndex+count) to startIndex.
This is different than the meaning of the parameters on string.LastIndexOf!</remarks>
</member>
<member name="P:ICSharpCode.NRefactory.Editor.ITextSource.Version">
<summary>
Gets a version identifier for this text source.
Returns null for unversioned text sources.
</summary>
</member>
<member name="P:ICSharpCode.NRefactory.Editor.ITextSource.TextLength">
<summary>
Gets the total text length.
</summary>
<returns>The length of the text, in characters.</returns>
<remarks>This is the same as Text.Length, but is more efficient because
it doesn't require creating a String object.</remarks>
</member>
<member name="P:ICSharpCode.NRefactory.Editor.ITextSource.Text">
<summary>
Gets the whole text as string.
</summary>
</member>
<member name="M:ICSharpCode.NRefactory.Editor.IDocument.CreateDocumentSnapshot">
<summary>
Creates an immutable snapshot of this document.
</summary>
</member>
<member name="M:ICSharpCode.NRefactory.Editor.IDocument.GetLineByNumber(System.Int32)">
<summary>
Gets the document line with the specified number.
</summary>
<param name="lineNumber">The number of the line to retrieve. The first line has number 1.</param>
</member>
<member name="M:ICSharpCode.NRefactory.Editor.IDocument.GetLineByOffset(System.Int32)">
<summary>
Gets the document line that contains the specified offset.
</summary>
</member>
<member name="M:ICSharpCode.NRefactory.Editor.IDocument.GetOffset(System.Int32,System.Int32)">
<summary>
Gets the offset from a text location.
</summary>
<seealso cref="M:ICSharpCode.NRefactory.Editor.IDocument.GetLocation(System.Int32)"/>
</member>
<member name="M:ICSharpCode.NRefactory.Editor.IDocument.GetOffset(ICSharpCode.NRefactory.TextLocation)">
<summary>
Gets the offset from a text location.
</summary>
<seealso cref="M:ICSharpCode.NRefactory.Editor.IDocument.GetLocation(System.Int32)"/>
</member>
<member name="M:ICSharpCode.NRefactory.Editor.IDocument.GetLocation(System.Int32)">
<summary>
Gets the location from an offset.
</summary>
<seealso cref="M:ICSharpCode.NRefactory.Editor.IDocument.GetOffset(ICSharpCode.NRefactory.TextLocation)"/>
</member>
<member name="M:ICSharpCode.NRefactory.Editor.IDocument.Insert(System.Int32,System.String)">
<summary>
Inserts text.
</summary>
<param name="offset">The offset at which the text is inserted.</param>
<param name="text">The new text.</param>
<remarks>
Anchors positioned exactly at the insertion offset will move according to their movement type.
For AnchorMovementType.Default, they will move behind the inserted text.
The caret will also move behind the inserted text.
</remarks>
</member>
<member name="M:ICSharpCode.NRefactory.Editor.IDocument.Insert(System.Int32,ICSharpCode.NRefactory.Editor.ITextSource)">
<summary>
Inserts text.
</summary>
<param name="offset">The offset at which the text is inserted.</param>
<param name="text">The new text.</param>
<remarks>
Anchors positioned exactly at the insertion offset will move according to their movement type.
For AnchorMovementType.Default, they will move behind the inserted text.
The caret will also move behind the inserted text.
</remarks>
</member>
<member name="M:ICSharpCode.NRefactory.Editor.IDocument.Insert(System.Int32,System.String,ICSharpCode.NRefactory.Editor.AnchorMovementType)">
<summary>
Inserts text.
</summary>
<param name="offset">The offset at which the text is inserted.</param>
<param name="text">The new text.</param>
<param name="defaultAnchorMovementType">
Anchors positioned exactly at the insertion offset will move according to the anchor's movement type.
For AnchorMovementType.Default, they will move according to the movement type specified by this parameter.
The caret will also move according to the <paramref name="defaultAnchorMovementType"/> parameter.
</param>
</member>
<member name="M:ICSharpCode.NRefactory.Editor.IDocument.Insert(System.Int32,ICSharpCode.NRefactory.Editor.ITextSource,ICSharpCode.NRefactory.Editor.AnchorMovementType)">
<summary>
Inserts text.
</summary>
<param name="offset">The offset at which the text is inserted.</param>
<param name="text">The new text.</param>
<param name="defaultAnchorMovementType">
Anchors positioned exactly at the insertion offset will move according to the anchor's movement type.
For AnchorMovementType.Default, they will move according to the movement type specified by this parameter.
The caret will also move according to the <paramref name="defaultAnchorMovementType"/> parameter.
</param>
</member>
<member name="M:ICSharpCode.NRefactory.Editor.IDocument.Remove(System.Int32,System.Int32)">
<summary>
Removes text.
</summary>
<param name="offset">Starting offset of the text to be removed.</param>
<param name="length">Length of the text to be removed.</param>
</member>
<member name="M:ICSharpCode.NRefactory.Editor.IDocument.Replace(System.Int32,System.Int32,System.String)">
<summary>
Replaces text.
</summary>
<param name="offset">The starting offset of the text to be replaced.</param>
<param name="length">The length of the text to be replaced.</param>
<param name="newText">The new text.</param>
</member>
<member name="M:ICSharpCode.NRefactory.Editor.IDocument.Replace(System.Int32,System.Int32,ICSharpCode.NRefactory.Editor.ITextSource)">
<summary>
Replaces text.
</summary>
<param name="offset">The starting offset of the text to be replaced.</param>
<param name="length">The length of the text to be replaced.</param>
<param name="newText">The new text.</param>
</member>
<member name="M:ICSharpCode.NRefactory.Editor.IDocument.StartUndoableAction">
<summary>
Make the document combine the following actions into a single
action for undo purposes.
</summary>
</member>
<member name="M:ICSharpCode.NRefactory.Editor.IDocument.EndUndoableAction">
<summary>
Ends the undoable action started with <see cref="M:ICSharpCode.NRefactory.Editor.IDocument.StartUndoableAction"/>.
</summary>
</member>
<member name="M:ICSharpCode.NRefactory.Editor.IDocument.OpenUndoGroup">
<summary>
Creates an undo group. Dispose the returned value to close the undo group.
</summary>
<returns>An object that closes the undo group when Dispose() is called.</returns>
</member>
<member name="M:ICSharpCode.NRefactory.Editor.IDocument.CreateAnchor(System.Int32)">
<summary>
Creates a new <see cref="T:ICSharpCode.NRefactory.Editor.ITextAnchor"/> at the specified offset.
</summary>
<inheritdoc cref="T:ICSharpCode.NRefactory.Editor.ITextAnchor" select="remarks|example"/>
</member>
<member name="P:ICSharpCode.NRefactory.Editor.IDocument.Text">
<summary>
Gets/Sets the text of the whole document..
</summary>
</member>
<member name="E:ICSharpCode.NRefactory.Editor.IDocument.TextChanging">
<summary>
This event is called directly before a change is applied to the document.
</summary>
<remarks>
It is invalid to modify the document within this event handler.
Aborting the change (by throwing an exception) is likely to cause corruption of data structures
that listen to the Changing and Changed events.
</remarks>
</member>
<member name="E:ICSharpCode.NRefactory.Editor.IDocument.TextChanged">
<summary>
This event is called directly after a change is applied to the document.
</summary>
<remarks>
It is invalid to modify the document within this event handler.
Aborting the event handler (by throwing an exception) is likely to cause corruption of data structures
that listen to the Changing and Changed events.
</remarks>
</member>
<member name="E:ICSharpCode.NRefactory.Editor.IDocument.ChangeCompleted">
<summary>
This event is called after a group of changes is completed.
</summary>
<seealso cref="M:ICSharpCode.NRefactory.Editor.IDocument.EndUndoableAction"/>
</member>
<member name="P:ICSharpCode.NRefactory.Editor.IDocument.LineCount">
<summary>
Gets the number of lines in the document.
</summary>
</member>
<member name="P:ICSharpCode.NRefactory.Editor.IDocument.FileName">
<summary>
Gets the name of the file the document is stored in.
Could also be a non-existent dummy file name or null if no name has been set.
</summary>
</member>
<member name="E:ICSharpCode.NRefactory.Editor.IDocument.FileNameChanged">
<summary>
Fired when the file name of the document changes.
</summary>
</member>
<member name="T:ICSharpCode.NRefactory.Editor.IDocumentLine">
<summary>
A line inside a <see cref="T:ICSharpCode.NRefactory.Editor.IDocument"/>.
</summary>
</member>
<member name="T:ICSharpCode.NRefactory.Editor.ISegment">
<summary>
An (Offset,Length)-pair.
</summary>
</member>
<member name="P:ICSharpCode.NRefactory.Editor.ISegment.Offset">
<summary>
Gets the start offset of the segment.
</summary>
</member>
<member name="P:ICSharpCode.NRefactory.Editor.ISegment.Length">
<summary>
Gets the length of the segment.
</summary>
<remarks>For line segments (IDocumentLine), the length does not include the line delimeter.</remarks>
</member>
<member name="P:ICSharpCode.NRefactory.Editor.ISegment.EndOffset">
<summary>
Gets the end offset of the segment.
</summary>
<remarks>EndOffset = Offset + Length;</remarks>
</member>
<member name="P:ICSharpCode.NRefactory.Editor.IDocumentLine.TotalLength">
<summary>
Gets the length of this line, including the line delimiter.
</summary>
</member>
<member name="P:ICSharpCode.NRefactory.Editor.IDocumentLine.DelimiterLength">
<summary>
Gets the length of the line terminator.
Returns 1 or 2; or 0 at the end of the document.
</summary>
</member>
<member name="P:ICSharpCode.NRefactory.Editor.IDocumentLine.LineNumber">
<summary>
Gets the number of this line.
The first line has the number 1.
</summary>
</member>
<member name="P:ICSharpCode.NRefactory.Editor.IDocumentLine.PreviousLine">
<summary>
Gets the previous line. Returns null if this is the first line in the document.
</summary>
</member>
<member name="P:ICSharpCode.NRefactory.Editor.IDocumentLine.NextLine">
<summary>
Gets the next line. Returns null if this is the last line in the document.
</summary>
</member>
<member name="P:ICSharpCode.NRefactory.Editor.IDocumentLine.IsDeleted">
<summary>
Gets whether the line was deleted.
</summary>
</member>
<member name="T:ICSharpCode.NRefactory.Editor.ISegmentExtensions">
<summary>
Extension methods for <see cref="T:ICSharpCode.NRefactory.Editor.ISegment"/>.
</summary>
</member>
<member name="M:ICSharpCode.NRefactory.Editor.ISegmentExtensions.Contains(ICSharpCode.NRefactory.Editor.ISegment,System.Int32,System.Int32)">
<summary>
Gets whether <paramref name="segment"/> fully contains the specified segment.
</summary>
<remarks>
Use <c>segment.Contains(offset, 0)</c> to detect whether a segment (end inclusive) contains offset;
use <c>segment.Contains(offset, 1)</c> to detect whether a segment (end exclusive) contains offset.
</remarks>
</member>
<member name="M:ICSharpCode.NRefactory.Editor.ISegmentExtensions.Contains(ICSharpCode.NRefactory.Editor.ISegment,ICSharpCode.NRefactory.Editor.ISegment)">
<summary>
Gets whether <paramref name="thisSegment"/> fully contains the specified segment.
</summary>
</member>
<member name="T:ICSharpCode.NRefactory.Editor.ITextAnchor">
<summary>
The TextAnchor class references an offset (a position between two characters).
It automatically updates the offset when text is inserted/removed in front of the anchor.
</summary>
<remarks>
<para>Use the <see cref="P:ICSharpCode.NRefactory.Editor.ITextAnchor.Offset"/> property to get the offset from a text anchor.
Use the <see cref="M:ICSharpCode.NRefactory.Editor.IDocument.CreateAnchor(System.Int32)"/> method to create an anchor from an offset.
</para>
<para>
The document will automatically update all text anchors; and because it uses weak references to do so,
the garbage collector can simply collect the anchor object when you don't need it anymore.
</para>
<para>Moreover, the document is able to efficiently update a large number of anchors without having to look
at each anchor object individually. Updating the offsets of all anchors usually only takes time logarithmic
to the number of anchors. Retrieving the <see cref="P:ICSharpCode.NRefactory.Editor.ITextAnchor.Offset"/> property also runs in O(lg N).</para>
</remarks>
<example>
Usage:
<code>TextAnchor anchor = document.CreateAnchor(offset);
ChangeMyDocument();
int newOffset = anchor.Offset;
</code>
</example>
</member>
<member name="P:ICSharpCode.NRefactory.Editor.ITextAnchor.Location">
<summary>
Gets the text location of this anchor.
</summary>
<exception cref="T:System.InvalidOperationException">Thrown when trying to get the Offset from a deleted anchor.</exception>
</member>
<member name="P:ICSharpCode.NRefactory.Editor.ITextAnchor.Offset">
<summary>
Gets the offset of the text anchor.
</summary>
<exception cref="T:System.InvalidOperationException">Thrown when trying to get the Offset from a deleted anchor.</exception>
</member>
<member name="P:ICSharpCode.NRefactory.Editor.ITextAnchor.MovementType">
<summary>
Controls how the anchor moves.
</summary>
<remarks>Anchor movement is ambiguous if text is inserted exactly at the anchor's location.
Does the anchor stay before the inserted text, or does it move after it?
The property <see cref="P:ICSharpCode.NRefactory.Editor.ITextAnchor.MovementType"/> will be used to determine which of these two options the anchor will choose.
The default value is <see cref="F:ICSharpCode.NRefactory.Editor.AnchorMovementType.Default"/>.</remarks>
</member>
<member name="P:ICSharpCode.NRefactory.Editor.ITextAnchor.SurviveDeletion">
<summary>
<para>
Specifies whether the anchor survives deletion of the text containing it.
</para><para>
<c>false</c>: The anchor is deleted when the a selection that includes the anchor is deleted.
<c>true</c>: The anchor is not deleted.
</para>
</summary>
<remarks><inheritdoc cref="P:ICSharpCode.NRefactory.Editor.ITextAnchor.IsDeleted"/></remarks>
</member>
<member name="P:ICSharpCode.NRefactory.Editor.ITextAnchor.IsDeleted">
<summary>
Gets whether the anchor was deleted.
</summary>
<remarks>
<para>When a piece of text containing an anchor is removed, then that anchor will be deleted.
First, the <see cref="P:ICSharpCode.NRefactory.Editor.ITextAnchor.IsDeleted"/> property is set to true on all deleted anchors,
then the <see cref="E:ICSharpCode.NRefactory.Editor.ITextAnchor.Deleted"/> events are raised.
You cannot retrieve the offset from an anchor that has been deleted.</para>
<para>This deletion behavior might be useful when using anchors for building a bookmark feature,
but in other cases you want to still be able to use the anchor. For those cases, set <c><see cref="P:ICSharpCode.NRefactory.Editor.ITextAnchor.SurviveDeletion"/> = true</c>.</para>
</remarks>
</member>
<member name="E:ICSharpCode.NRefactory.Editor.ITextAnchor.Deleted">
<summary>
Occurs after the anchor was deleted.
</summary>
<remarks>
<inheritdoc cref="P:ICSharpCode.NRefactory.Editor.ITextAnchor.IsDeleted"/>
<para>Due to the 'weak reference' nature of text anchors, you will receive
the Deleted event only while your code holds a reference to the TextAnchor object.
</para>
</remarks>
</member>
<member name="P:ICSharpCode.NRefactory.Editor.ITextAnchor.Line">
<summary>
Gets the line number of the anchor.
</summary>
<exception cref="T:System.InvalidOperationException">Thrown when trying to get the Offset from a deleted anchor.</exception>
</member>
<member name="P:ICSharpCode.NRefactory.Editor.ITextAnchor.Column">
<summary>
Gets the column number of this anchor.
</summary>
<exception cref="T:System.InvalidOperationException">Thrown when trying to get the Offset from a deleted anchor.</exception>
</member>
<member name="T:ICSharpCode.NRefactory.Editor.AnchorMovementType">
<summary>
Defines how a text anchor moves.
</summary>
</member>
<member name="F:ICSharpCode.NRefactory.Editor.AnchorMovementType.Default">
<summary>
When text is inserted at the anchor position, the type of the insertion
determines where the caret moves to. For normal insertions, the anchor will move
after the inserted text.
</summary>
</member>
<member name="F:ICSharpCode.NRefactory.Editor.AnchorMovementType.BeforeInsertion">
<summary>
Behaves like a start marker - when text is inserted at the anchor position, the anchor will stay
before the inserted text.
</summary>
</member>
<member name="F:ICSharpCode.NRefactory.Editor.AnchorMovementType.AfterInsertion">
<summary>
Behave like an end marker - when text is insered at the anchor position, the anchor will move
after the inserted text.
</summary>
</member>
<member name="T:ICSharpCode.NRefactory.Editor.ITextSourceVersion">
<summary>
Represents a version identifier for a text source.
</summary>
<remarks>
Verions can be used to efficiently detect whether a document has changed and needs reparsing;
or even to implement incremental parsers.
It is a separate class from ITextSource to allow the GC to collect the text source while
the version checkpoint is still in use.
</remarks>
</member>
<member name="M:ICSharpCode.NRefactory.Editor.ITextSourceVersion.BelongsToSameDocumentAs(ICSharpCode.NRefactory.Editor.ITextSourceVersion)">
<summary>
Gets whether this checkpoint belongs to the same document as the other checkpoint.
</summary>
<remarks>
Returns false when given <c>null</c>.
</remarks>
</member>
<member name="M:ICSharpCode.NRefactory.Editor.ITextSourceVersion.CompareAge(ICSharpCode.NRefactory.Editor.ITextSourceVersion)">
<summary>
Compares the age of this checkpoint to the other checkpoint.
</summary>
<remarks>This method is thread-safe.</remarks>
<exception cref="T:System.ArgumentException">Raised if 'other' belongs to a different document than this version.</exception>
<returns>-1 if this version is older than <paramref name="other"/>.
0 if <c>this</c> version instance represents the same version as <paramref name="other"/>.
1 if this version is newer than <paramref name="other"/>.</returns>
</member>
<member name="M:ICSharpCode.NRefactory.Editor.ITextSourceVersion.GetChangesTo(ICSharpCode.NRefactory.Editor.ITextSourceVersion)">
<summary>
Gets the changes from this checkpoint to the other checkpoint.
If 'other' is older than this checkpoint, reverse changes are calculated.
</summary>
<remarks>This method is thread-safe.</remarks>
<exception cref="T:System.ArgumentException">Raised if 'other' belongs to a different document than this checkpoint.</exception>
</member>
<member name="M:ICSharpCode.NRefactory.Editor.ITextSourceVersion.MoveOffsetTo(ICSharpCode.NRefactory.Editor.ITextSourceVersion,System.Int32,ICSharpCode.NRefactory.Editor.AnchorMovementType)">
<summary>
Calculates where the offset has moved in the other buffer version.
</summary>
<exception cref="T:System.ArgumentException">Raised if 'other' belongs to a different document than this checkpoint.</exception>
</member>
<member name="T:ICSharpCode.NRefactory.Editor.ReadOnlyDocument">
<summary>
Read-only implementation of <see cref="T:ICSharpCode.NRefactory.Editor.IDocument"/>.
</summary>
</member>
<member name="M:ICSharpCode.NRefactory.Editor.ReadOnlyDocument.#ctor(ICSharpCode.NRefactory.Editor.ITextSource)">
<summary>
Creates a new ReadOnlyDocument from the given text source.
</summary>
</member>
<member name="M:ICSharpCode.NRefactory.Editor.ReadOnlyDocument.#ctor(System.String)">
<summary>
Creates a new ReadOnlyDocument from the given string.
</summary>
</member>
<member name="M:ICSharpCode.NRefactory.Editor.ReadOnlyDocument.#ctor(ICSharpCode.NRefactory.Editor.ITextSource,System.String)">
<summary>
Creates a new ReadOnlyDocument from the given text source;
and sets IDocument.FileName to the specified file name.
</summary>
</member>
<member name="M:ICSharpCode.NRefactory.Editor.ReadOnlyDocument.GetLineByNumber(System.Int32)">
<inheritdoc/>
</member>
<member name="M:ICSharpCode.NRefactory.Editor.ReadOnlyDocument.GetLineByOffset(System.Int32)">
<inheritdoc/>
</member>
<member name="M:ICSharpCode.NRefactory.Editor.ReadOnlyDocument.GetOffset(System.Int32,System.Int32)">
<inheritdoc/>
</member>
<member name="M:ICSharpCode.NRefactory.Editor.ReadOnlyDocument.GetOffset(ICSharpCode.NRefactory.TextLocation)">
<inheritdoc/>
</member>
<member name="M:ICSharpCode.NRefactory.Editor.ReadOnlyDocument.GetLocation(System.Int32)">
<inheritdoc/>
</member>
<member name="M:ICSharpCode.NRefactory.Editor.ReadOnlyDocument.CreateAnchor(System.Int32)">
<inheritdoc/>
</member>
<member name="M:ICSharpCode.NRefactory.Editor.ReadOnlyDocument.CreateSnapshot">
<inheritdoc/>
</member>
<member name="M:ICSharpCode.NRefactory.Editor.ReadOnlyDocument.CreateSnapshot(System.Int32,System.Int32)">
<inheritdoc/>
</member>
<member name="M:ICSharpCode.NRefactory.Editor.ReadOnlyDocument.CreateDocumentSnapshot">
<inheritdoc/>
</member>
<member name="M:ICSharpCode.NRefactory.Editor.ReadOnlyDocument.CreateReader">
<inheritdoc/>
</member>
<member name="M:ICSharpCode.NRefactory.Editor.ReadOnlyDocument.CreateReader(System.Int32,System.Int32)">
<inheritdoc/>
</member>
<member name="M:ICSharpCode.NRefactory.Editor.ReadOnlyDocument.WriteTextTo(System.IO.TextWriter)">
<inheritdoc/>
</member>
<member name="M:ICSharpCode.NRefactory.Editor.ReadOnlyDocument.WriteTextTo(System.IO.TextWriter,System.Int32,System.Int32)">
<inheritdoc/>
</member>
<member name="M:ICSharpCode.NRefactory.Editor.ReadOnlyDocument.GetCharAt(System.Int32)">
<inheritdoc/>
</member>
<member name="M:ICSharpCode.NRefactory.Editor.ReadOnlyDocument.GetText(System.Int32,System.Int32)">
<inheritdoc/>
</member>
<member name="M:ICSharpCode.NRefactory.Editor.ReadOnlyDocument.GetText(ICSharpCode.NRefactory.Editor.ISegment)">
<inheritdoc/>
</member>
<member name="M:ICSharpCode.NRefactory.Editor.ReadOnlyDocument.IndexOf(System.Char,System.Int32,System.Int32)">
<inheritdoc/>
</member>
<member name="M:ICSharpCode.NRefactory.Editor.ReadOnlyDocument.IndexOfAny(System.Char[],System.Int32,System.Int32)">
<inheritdoc/>
</member>
<member name="M:ICSharpCode.NRefactory.Editor.ReadOnlyDocument.IndexOf(System.String,System.Int32,System.Int32,System.StringComparison)">
<inheritdoc/>
</member>
<member name="M:ICSharpCode.NRefactory.Editor.ReadOnlyDocument.LastIndexOf(System.Char,System.Int32,System.Int32)">
<inheritdoc/>
</member>
<member name="M:ICSharpCode.NRefactory.Editor.ReadOnlyDocument.LastIndexOf(System.String,System.Int32,System.Int32,System.StringComparison)">
<inheritdoc/>
</member>
<member name="P:ICSharpCode.NRefactory.Editor.ReadOnlyDocument.Text">
<inheritdoc/>
</member>
<member name="P:ICSharpCode.NRefactory.Editor.ReadOnlyDocument.LineCount">
<inheritdoc/>
</member>
<member name="P:ICSharpCode.NRefactory.Editor.ReadOnlyDocument.Version">
<inheritdoc/>
</member>
<member name="P:ICSharpCode.NRefactory.Editor.ReadOnlyDocument.TextLength">
<inheritdoc/>
</member>
<member name="E:ICSharpCode.NRefactory.Editor.ReadOnlyDocument.FileNameChanged">
<inheritdoc/>
<remarks>Will never be raised on <see cref="T:ICSharpCode.NRefactory.Editor.ReadOnlyDocument"/>.</remarks>
</member>
<member name="P:ICSharpCode.NRefactory.Editor.ReadOnlyDocument.FileName">
<inheritdoc/>
</member>
<member name="T:ICSharpCode.NRefactory.Editor.StringBuilderDocument">
<summary>
Document based on a string builder.
This class serves as a reference implementation for the IDocument interface.
</summary>
</member>
<member name="M:ICSharpCode.NRefactory.Editor.StringBuilderDocument.#ctor">
<summary>
Creates a new StringBuilderDocument.
</summary>
</member>
<member name="M:ICSharpCode.NRefactory.Editor.StringBuilderDocument.#ctor(System.String)">
<summary>
Creates a new StringBuilderDocument with the specified initial text.
</summary>
</member>
<member name="M:ICSharpCode.NRefactory.Editor.StringBuilderDocument.#ctor(ICSharpCode.NRefactory.Editor.ITextSource)">
<summary>
Creates a new StringBuilderDocument with the initial text copied from the specified text source.
</summary>
</member>
<member name="M:ICSharpCode.NRefactory.Editor.StringBuilderDocument.GetLineByNumber(System.Int32)">
<inheritdoc/>
</member>
<member name="M:ICSharpCode.NRefactory.Editor.StringBuilderDocument.GetLineByOffset(System.Int32)">
<inheritdoc/>
</member>
<member name="M:ICSharpCode.NRefactory.Editor.StringBuilderDocument.GetOffset(System.Int32,System.Int32)">
<inheritdoc/>
</member>
<member name="M:ICSharpCode.NRefactory.Editor.StringBuilderDocument.GetOffset(ICSharpCode.NRefactory.TextLocation)">
<inheritdoc/>
</member>
<member name="M:ICSharpCode.NRefactory.Editor.StringBuilderDocument.GetLocation(System.Int32)">
<inheritdoc/>
</member>
<member name="M:ICSharpCode.NRefactory.Editor.StringBuilderDocument.Insert(System.Int32,System.String)">
<inheritdoc/>
</member>
<member name="M:ICSharpCode.NRefactory.Editor.StringBuilderDocument.Insert(System.Int32,ICSharpCode.NRefactory.Editor.ITextSource)">
<inheritdoc/>
</member>
<member name="M:ICSharpCode.NRefactory.Editor.StringBuilderDocument.Insert(System.Int32,System.String,ICSharpCode.NRefactory.Editor.AnchorMovementType)">
<inheritdoc/>
</member>
<member name="M:ICSharpCode.NRefactory.Editor.StringBuilderDocument.Insert(System.Int32,ICSharpCode.NRefactory.Editor.ITextSource,ICSharpCode.NRefactory.Editor.AnchorMovementType)">
<inheritdoc/>
</member>
<member name="M:ICSharpCode.NRefactory.Editor.StringBuilderDocument.Remove(System.Int32,System.Int32)">
<inheritdoc/>
</member>
<member name="M:ICSharpCode.NRefactory.Editor.StringBuilderDocument.Replace(System.Int32,System.Int32,System.String)">
<inheritdoc/>
</member>
<member name="M:ICSharpCode.NRefactory.Editor.StringBuilderDocument.Replace(System.Int32,System.Int32,ICSharpCode.NRefactory.Editor.ITextSource)">
<inheritdoc/>
</member>
<member name="M:ICSharpCode.NRefactory.Editor.StringBuilderDocument.StartUndoableAction">
<inheritdoc/>
</member>
<member name="M:ICSharpCode.NRefactory.Editor.StringBuilderDocument.EndUndoableAction">
<inheritdoc/>
</member>
<member name="M:ICSharpCode.NRefactory.Editor.StringBuilderDocument.OpenUndoGroup">
<inheritdoc/>
</member>
<member name="M:ICSharpCode.NRefactory.Editor.StringBuilderDocument.CreateDocumentSnapshot">
<inheritdoc/>
</member>
<member name="M:ICSharpCode.NRefactory.Editor.StringBuilderDocument.CreateSnapshot">
<inheritdoc/>
</member>
<member name="M:ICSharpCode.NRefactory.Editor.StringBuilderDocument.CreateSnapshot(System.Int32,System.Int32)">
<inheritdoc/>
</member>
<member name="M:ICSharpCode.NRefactory.Editor.StringBuilderDocument.CreateReader">
<inheritdoc/>
</member>
<member name="M:ICSharpCode.NRefactory.Editor.StringBuilderDocument.CreateReader(System.Int32,System.Int32)">
<inheritdoc/>
</member>
<member name="M:ICSharpCode.NRefactory.Editor.StringBuilderDocument.WriteTextTo(System.IO.TextWriter)">
<inheritdoc/>
</member>
<member name="M:ICSharpCode.NRefactory.Editor.StringBuilderDocument.WriteTextTo(System.IO.TextWriter,System.Int32,System.Int32)">
<inheritdoc/>
</member>
<member name="M:ICSharpCode.NRefactory.Editor.StringBuilderDocument.GetCharAt(System.Int32)">
<inheritdoc/>
</member>
<member name="M:ICSharpCode.NRefactory.Editor.StringBuilderDocument.GetText(System.Int32,System.Int32)">
<inheritdoc/>
</member>
<member name="M:ICSharpCode.NRefactory.Editor.StringBuilderDocument.GetText(ICSharpCode.NRefactory.Editor.ISegment)">
<inheritdoc/>
</member>
<member name="M:ICSharpCode.NRefactory.Editor.StringBuilderDocument.IndexOf(System.Char,System.Int32,System.Int32)">
<inheritdoc/>
</member>
<member name="M:ICSharpCode.NRefactory.Editor.StringBuilderDocument.IndexOfAny(System.Char[],System.Int32,System.Int32)">
<inheritdoc/>
</member>
<member name="M:ICSharpCode.NRefactory.Editor.StringBuilderDocument.IndexOf(System.String,System.Int32,System.Int32,System.StringComparison)">
<inheritdoc/>
</member>
<member name="M:ICSharpCode.NRefactory.Editor.StringBuilderDocument.LastIndexOf(System.Char,System.Int32,System.Int32)">
<inheritdoc/>
</member>
<member name="M:ICSharpCode.NRefactory.Editor.StringBuilderDocument.LastIndexOf(System.String,System.Int32,System.Int32,System.StringComparison)">
<inheritdoc/>
</member>
<member name="M:ICSharpCode.NRefactory.Editor.StringBuilderDocument.CreateAnchor(System.Int32)">
<inheritdoc/>
</member>
<member name="M:ICSharpCode.NRefactory.Editor.StringBuilderDocument.GetService(System.Type)">
<inheritdoc/>
</member>
<member name="E:ICSharpCode.NRefactory.Editor.StringBuilderDocument.TextChanging">
<inheritdoc/>
</member>
<member name="E:ICSharpCode.NRefactory.Editor.StringBuilderDocument.TextChanged">
<inheritdoc/>
</member>
<member name="E:ICSharpCode.NRefactory.Editor.StringBuilderDocument.ChangeCompleted">
<inheritdoc/>
</member>
<member name="P:ICSharpCode.NRefactory.Editor.StringBuilderDocument.Version">
<inheritdoc/>
</member>
<member name="P:ICSharpCode.NRefactory.Editor.StringBuilderDocument.LineCount">
<inheritdoc/>
</member>
<member name="P:ICSharpCode.NRefactory.Editor.StringBuilderDocument.Text">
<inheritdoc/>
</member>
<member name="P:ICSharpCode.NRefactory.Editor.StringBuilderDocument.TextLength">
<inheritdoc/>
</member>
<member name="E:ICSharpCode.NRefactory.Editor.StringBuilderDocument.FileNameChanged">
<inheritdoc/>
</member>
<member name="P:ICSharpCode.NRefactory.Editor.StringBuilderDocument.FileName">
<inheritdoc/>
</member>
<member name="T:ICSharpCode.NRefactory.Editor.TextChangeEventArgs">
<summary>
Describes a change of the document text.
This class is thread-safe.
</summary>
</member>
<member name="M:ICSharpCode.NRefactory.Editor.TextChangeEventArgs.#ctor(System.Int32,System.String,System.String)">
<summary>
Creates a new TextChangeEventArgs object.
</summary>
</member>
<member name="M:ICSharpCode.NRefactory.Editor.TextChangeEventArgs.#ctor(System.Int32,ICSharpCode.NRefactory.Editor.ITextSource,ICSharpCode.NRefactory.Editor.ITextSource)">
<summary>
Creates a new TextChangeEventArgs object.
</summary>
</member>
<member name="M:ICSharpCode.NRefactory.Editor.TextChangeEventArgs.GetNewOffset(System.Int32,ICSharpCode.NRefactory.Editor.AnchorMovementType)">
<summary>
Gets the new offset where the specified offset moves after this document change.
</summary>
</member>
<member name="M:ICSharpCode.NRefactory.Editor.TextChangeEventArgs.Invert">
<summary>
Creates TextChangeEventArgs for the reverse change.
</summary>
</member>
<member name="P:ICSharpCode.NRefactory.Editor.TextChangeEventArgs.Offset">
<summary>
The offset at which the change occurs.
</summary>
</member>
<member name="P:ICSharpCode.NRefactory.Editor.TextChangeEventArgs.RemovedText">
<summary>
The text that was removed.
</summary>
</member>
<member name="P:ICSharpCode.NRefactory.Editor.TextChangeEventArgs.RemovalLength">
<summary>
The number of characters removed.
</summary>
</member>
<member name="P:ICSharpCode.NRefactory.Editor.TextChangeEventArgs.InsertedText">
<summary>
The text that was inserted.
</summary>
</member>
<member name="P:ICSharpCode.NRefactory.Editor.TextChangeEventArgs.InsertionLength">
<summary>
The number of characters inserted.
</summary>
</member>
<member name="T:ICSharpCode.NRefactory.Editor.StringTextSource">
<summary>
Implements the ITextSource interface using a string.
</summary>
</member>
<member name="F:ICSharpCode.NRefactory.Editor.StringTextSource.Empty">
<summary>
Gets a text source containing the empty string.
</summary>
</member>
<member name="M:ICSharpCode.NRefactory.Editor.StringTextSource.#ctor(System.String)">
<summary>
Creates a new StringTextSource with the given text.
</summary>
</member>
<member name="M:ICSharpCode.NRefactory.Editor.StringTextSource.#ctor(System.String,ICSharpCode.NRefactory.Editor.ITextSourceVersion)">
<summary>
Creates a new StringTextSource with the given text.
</summary>
</member>
<member name="M:ICSharpCode.NRefactory.Editor.StringTextSource.CreateSnapshot">
<inheritdoc/>
</member>
<member name="M:ICSharpCode.NRefactory.Editor.StringTextSource.CreateSnapshot(System.Int32,System.Int32)">
<inheritdoc/>
</member>
<member name="M:ICSharpCode.NRefactory.Editor.StringTextSource.CreateReader">
<inheritdoc/>
</member>
<member name="M:ICSharpCode.NRefactory.Editor.StringTextSource.CreateReader(System.Int32,System.Int32)">
<inheritdoc/>
</member>
<member name="M:ICSharpCode.NRefactory.Editor.StringTextSource.WriteTextTo(System.IO.TextWriter)">
<inheritdoc/>
</member>
<member name="M:ICSharpCode.NRefactory.Editor.StringTextSource.WriteTextTo(System.IO.TextWriter,System.Int32,System.Int32)">
<inheritdoc/>
</member>
<member name="M:ICSharpCode.NRefactory.Editor.StringTextSource.GetCharAt(System.Int32)">
<inheritdoc/>
</member>
<member name="M:ICSharpCode.NRefactory.Editor.StringTextSource.GetText(System.Int32,System.Int32)">
<inheritdoc/>
</member>
<member name="M:ICSharpCode.NRefactory.Editor.StringTextSource.GetText(ICSharpCode.NRefactory.Editor.ISegment)">
<inheritdoc/>
</member>
<member name="M:ICSharpCode.NRefactory.Editor.StringTextSource.IndexOf(System.Char,System.Int32,System.Int32)">
<inheritdoc/>
</member>
<member name="M:ICSharpCode.NRefactory.Editor.StringTextSource.IndexOfAny(System.Char[],System.Int32,System.Int32)">
<inheritdoc/>
</member>
<member name="M:ICSharpCode.NRefactory.Editor.StringTextSource.IndexOf(System.String,System.Int32,System.Int32,System.StringComparison)">
<inheritdoc/>
</member>
<member name="M:ICSharpCode.NRefactory.Editor.StringTextSource.LastIndexOf(System.Char,System.Int32,System.Int32)">
<inheritdoc/>
</member>