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