2 implementations of GetCachedEntriesFromHost
Microsoft.Build.Engine (2)
Engine\EngineCallback.cs (1)
78public CacheEntry[] GetCachedEntriesFromHost(int nodeId, string[] names, string scopeName, BuildPropertyGroup scopeProperties, string scopeToolsVersion, CacheContentType cacheContentType)
LocalProvider\LocalNodeCallback.cs (1)
285public CacheEntry[] GetCachedEntriesFromHost(int nodeId, string[] names, string scopeName, BuildPropertyGroup scopeProperties, string scopeToolsVersion, CacheContentType cacheContentType)
2 references to GetCachedEntriesFromHost
Microsoft.Build.Engine (2)
Engine\Node.cs (1)
182return parentCallback.GetCachedEntriesFromHost(this.nodeId /* ignored */, names, scopeName, scopeProperties, scopeToolsVersion, cacheContentType);
LocalProvider\LocalCallDescriptor.cs (1)
1386entries = engineCallback.GetCachedEntriesFromHost(nodeId, this.names, this.scopeName, this.scopeProperties, this.scopeToolsVersion, this.cacheContentType);