1 write to Id
Microsoft.CodeAnalysis.Workspaces (1)
Workspace\Host\PersistentStorage\DocumentKey.cs (1)
36Id = id;
9 references to Id
Microsoft.CodeAnalysis.Features (1)
NavigateTo\AbstractNavigateToSearchService.CachedDocumentSearch.cs (1)
136documentKey.Id, document: null, patternName, patternContainer, kinds, onItemFound, index, cancellationToken).ConfigureAwait(false);
Microsoft.CodeAnalysis.Remote.ServiceHub (3)
Services\SemanticClassification\RemoteSemanticClassificationService.Caching.cs (3)
219var data = _cachedData.FirstOrNull(d => d.id == documentKey.Id && d.checksum == checksum); 242if (currentNode.Value.id == documentKey.Id) 250_cachedData.AddLast((documentKey.Id, type, checksum, classifiedSpans));
Microsoft.CodeAnalysis.Workspaces (5)
Storage\SQLite\v2\SQLitePersistentStorage_DocumentIds.cs (2)
31if (!_documentIdToPrimaryKeyMap.TryGetValue(documentKey.Id, out var existingId)) 49_documentIdToPrimaryKeyMap.TryAdd(documentKey.Id, existingId);
Workspace\Host\PersistentStorage\DocumentKey.cs (3)
51=> this.Id == other.Id; 54=> this.Id.GetHashCode();