1 write to DocumentId
Microsoft.CodeAnalysis.Workspaces (1)
Rename\RenameLocation.cs (1)
33DocumentId = 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)
322var 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)
119location.DocumentId,
Rename\LightweightRenameLocations.cs (1)
131this.Locations.WhereAsArray(loc => filter(loc.DocumentId, loc.Location.SourceSpan)),
Rename\RenameUtilities.cs (2)
87return renameLocations.Select(l => solution.GetRequiredDocument(l.DocumentId)); 100var isSubset = renameLocations.Select(l => l.DocumentId.ProjectId).Distinct().Except(projectIdsOfRenameSymbolDeclaration).IsEmpty();