5 references to TryGetPosition
Microsoft.CodeAnalysis.EditorFeatures.Text (4)
Shared\Extensions\ITextSnapshotExtensions.cs (4)
20
var position = snapshot.
TryGetPosition
(lineNumber, columnIndex);
42
=>
TryGetPosition
(snapshot, lineNumber, columnIndex) ?? throw new InvalidOperationException(TextEditorResources.The_snapshot_does_not_contain_the_specified_position);
100
var startPosition = snapshot.
TryGetPosition
(startLine, startIndex);
101
var endPosition = snapshot.
TryGetPosition
(endLine, endIndex);
Microsoft.VisualStudio.LanguageServices (1)
LanguageService\AbstractLanguageService`2.IVsLanguageBlock.cs (1)
33
var position = snapshot?.
TryGetPosition
(iCurrentLine, iCurrentChar);