10 references to NewPosition
Microsoft.AspNetCore.App.Analyzers (4)
RouteEmbeddedLanguage\FrameworkParametersCompletionProvider.cs (2)
264if (change.NewPosition != null) 266properties.Add(NewPositionKey, change.NewPosition.Value.ToString(CultureInfo.InvariantCulture));
RouteEmbeddedLanguage\RoutePatternCompletionProvider.cs (2)
143if (change.NewPosition != null) 145properties.Add(NewPositionKey, change.NewPosition.Value.ToString(CultureInfo.InvariantCulture));
Microsoft.CodeAnalysis.Features (6)
Completion\CompletionChange.cs (4)
145=> new(textChange, TextChanges, NewPosition, IncludesCommitCharacter); 151=> new(TextChange, textChanges, NewPosition, IncludesCommitCharacter); 154/// Creates a copy of this <see cref="CompletionChange"/> with the <see cref="NewPosition"/> property changed. 163=> new(TextChange, TextChanges, NewPosition, includesCommitCharacter);
EmbeddedLanguages\RegularExpressions\LanguageServices\RegexEmbeddedCompletionProvider.cs (2)
106if (change.NewPosition != null) 108properties.Add(new KeyValuePair<string, string>(NewPositionKey, change.NewPosition.ToString()));