4 implementations of UpdateEditorConfigAsync
Microsoft.VisualStudio.LanguageServices (4)
EditorConfigSettings\Analyzers\View\AnalyzerSettingsView.xaml.cs (1)
33public Task<SourceText> UpdateEditorConfigAsync(SourceText sourceText) => _viewModel.UpdateEditorConfigAsync(sourceText);
EditorConfigSettings\CodeStyle\View\CodeStyleSettingsView.xaml.cs (1)
34public Task<SourceText> UpdateEditorConfigAsync(SourceText sourceText) => _viewModel.UpdateEditorConfigAsync(sourceText);
EditorConfigSettings\NamingStyle\View\NamingStyleSettingsView.xaml.cs (1)
30public Task<SourceText> UpdateEditorConfigAsync(SourceText sourceText) => _viewModel.UpdateEditorConfigAsync(sourceText);
EditorConfigSettings\Whitespace\View\WhitespaceSettingsView.xaml.cs (1)
33public Task<SourceText> UpdateEditorConfigAsync(SourceText sourceText) => _viewModel.UpdateEditorConfigAsync(sourceText);
1 reference to UpdateEditorConfigAsync
Microsoft.VisualStudio.LanguageServices (1)
EditorConfigSettings\SettingsEditorControl.xaml.cs (1)
97updatedText = await view.UpdateEditorConfigAsync(updatedText).ConfigureAwait(false);