5 implementations of CanApplyChange
Microsoft.CodeAnalysis.ExternalAccess.Razor.Features (1)
RazorDocumentServiceProviderWrapper.cs (1)
26public bool CanApplyChange => _innerDocumentServiceProvider.CanApplyChange;
Microsoft.CodeAnalysis.Workspaces (2)
Workspace\Solution\DefaultTextDocumentServiceProvider.cs (1)
51public bool CanApplyChange => true;
Workspace\Solution\SourceGeneratedDocumentState.cs (1)
294public bool CanApplyChange => false;
Microsoft.CodeAnalysis.Workspaces.Test.Utilities (1)
TestDocumentServiceProvider.cs (1)
52public bool CanApplyChange { get; set; }
Microsoft.VisualStudio.LanguageServices (1)
ExternalAccess\VSTypeScript\Api\VSTypeScriptVisualStudioProjectWrapper.LSPContainedDocumentServiceProvider.cs (1)
22bool IDocumentOperationService.CanApplyChange => true;
3 references to CanApplyChange
Microsoft.CodeAnalysis.Workspaces (3)
Workspace\Host\DocumentService\Extensions.cs (1)
17=> document?.DocumentServiceProvider.GetService<IDocumentOperationService>()?.CanApplyChange ?? false;
Workspace\Solution\SourceGeneratedDocumentState.cs (1)
263/// <see cref="IDocumentOperationService.CanApplyChange"/> to <see langword="false"/> for source generated
Workspace\Workspace.cs (1)
61/// A document is unchangeable if <see cref="IDocumentOperationService.CanApplyChange"/> is false.