2 instantiations of XamlFormattingOptions
Microsoft.VisualStudio.LanguageServices.Xaml (2)
Implementation\LanguageServer\Handler\Formatting\AbstractFormatDocumentHandlerBase.cs (1)
42
var options = new
XamlFormattingOptions
Implementation\LanguageServer\Handler\Formatting\FormatDocumentOnTypeHandler.cs (1)
47
var options = new
XamlFormattingOptions
{ InsertSpaces = request.Options.InsertSpaces, TabSize = request.Options.TabSize, OtherOptions = request.Options.OtherOptions?.AsUntyped() };
4 references to XamlFormattingOptions
Microsoft.VisualStudio.LanguageServices.Xaml (4)
Features\Formatting\IXamlFormattingService.cs (2)
18
Task<IList<TextChange>> GetFormattingChangesAsync(TextDocument document,
XamlFormattingOptions
options, TextSpan? textSpan, CancellationToken cancellationToken);
19
Task<IList<TextChange>> GetFormattingChangesAsync(TextDocument document,
XamlFormattingOptions
options, char typedChar, int position, CancellationToken cancellationToken);
Implementation\LanguageServer\Handler\Formatting\AbstractFormatDocumentHandlerBase.cs (1)
42
var
options = new XamlFormattingOptions
Implementation\LanguageServer\Handler\Formatting\FormatDocumentOnTypeHandler.cs (1)
47
var
options = new XamlFormattingOptions { InsertSpaces = request.Options.InsertSpaces, TabSize = request.Options.TabSize, OtherOptions = request.Options.OtherOptions?.AsUntyped() };