1 write to DocumentId
Microsoft.CodeAnalysis.Workspaces (1)
Rename\RenameLocation.cs (1)
33
DocumentId
= documentId;
8 references to DocumentId
Microsoft.CodeAnalysis.EditorFeatures (1)
InlineRename\AbstractEditorInlineRenameService.InlineRenameLocationSet.cs (1)
36
_renameLocationSet.Solution.GetDocument(location.
DocumentId
), location.Location.SourceSpan);
Microsoft.CodeAnalysis.Features (1)
UseAutoProperty\AbstractUseAutoPropertyCodeFixProvider.cs (1)
322
var syntaxFacts = solution.GetRequiredDocument(location.
DocumentId
).GetRequiredLanguageService<ISyntaxFactsService>();
Microsoft.CodeAnalysis.Workspaces (6)
Rename\ConflictEngine\ConflictResolver.Session.cs (2)
791
.Where(l => l.
DocumentId
== documentId && ShouldIncludeLocation(renameLocations, l))
796
.Where(l => l.
DocumentId
== documentId && l.IsRenameInStringOrComment)
Rename\IRemoteRenamerService.cs (1)
119
location.
DocumentId
,
Rename\LightweightRenameLocations.cs (1)
131
this.Locations.WhereAsArray(loc => filter(loc.
DocumentId
, loc.Location.SourceSpan)),
Rename\RenameUtilities.cs (2)
87
return renameLocations.Select(l => solution.GetRequiredDocument(l.
DocumentId
));
100
var isSubset = renameLocations.Select(l => l.
DocumentId
.ProjectId).Distinct().Except(projectIdsOfRenameSymbolDeclaration).IsEmpty();