9 references to Id
Microsoft.CodeAnalysis.Features (1)
NavigateTo\RoslynNavigateToItem.cs (1)
68public DocumentId DocumentId => this.DocumentKey.Id;
Microsoft.CodeAnalysis.Remote.ServiceHub (3)
Services\SemanticClassification\RemoteSemanticClassificationService.Caching.cs (3)
245var data = _cachedData.FirstOrNull(d => d.id == documentKey.Id && d.checksum == checksum); 268if (currentNode.Value.id == documentKey.Id) 276_cachedData.AddLast((documentKey.Id, type, checksum, classifiedSpans));
Microsoft.CodeAnalysis.Workspaces (5)
Storage\SQLite\v2\SQLitePersistentStorage_DocumentIds.cs (2)
29if (!_documentIdToPrimaryKeyMap.TryGetValue(documentKey.Id, out var existingId)) 47_documentIdToPrimaryKeyMap.TryAdd(documentKey.Id, existingId);
Workspace\Host\PersistentStorage\DocumentKey.cs (3)
43=> this.Id == other.Id; 46=> this.Id.GetHashCode();