9 references to Id
Microsoft.CodeAnalysis.Features (1)
NavigateTo\RoslynNavigateToItem.cs (1)
68
public DocumentId DocumentId => this.DocumentKey.
Id
;
Microsoft.CodeAnalysis.Remote.ServiceHub (3)
Services\SemanticClassification\RemoteSemanticClassificationService.Caching.cs (3)
245
var data = _cachedData.FirstOrNull(d => d.id == documentKey.
Id
&& d.checksum == checksum);
268
if (currentNode.Value.id == documentKey.
Id
)
276
_cachedData.AddLast((documentKey.
Id
, type, checksum, classifiedSpans));
Microsoft.CodeAnalysis.Workspaces (5)
Storage\SQLite\v2\SQLitePersistentStorage_DocumentIds.cs (2)
29
if (!_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();