2 implementations of ICacheParameter
Microsoft.TemplateEngine.Utils (1)
CacheParameter.cs (1)
9public class CacheParameter : ICacheParameter, IAllowDefaultIfOptionWithoutValue
Microsoft.TemplateSearch.Common (1)
TemplateDiscoveryMetadata\BlobStorageTemplateInfo.cs (1)
468private class BlobLegacyCacheParameter : ICacheParameter
13 references to ICacheParameter
Microsoft.TemplateEngine.Abstractions (1)
ITemplateInfo.cs (1)
21IReadOnlyDictionary<string, ICacheParameter> CacheParameters { get; }
Microsoft.TemplateEngine.Cli (1)
CliTemplateInfo.cs (1)
55public IReadOnlyDictionary<string, ICacheParameter> CacheParameters => _templateInfo.CacheParameters;
Microsoft.TemplateEngine.Edge (5)
FilterableTemplateInfo.cs (1)
52public IReadOnlyDictionary<string, ICacheParameter> CacheParameters { get; private set; }
Settings\TemplateInfo.cs (4)
19private IReadOnlyDictionary<string, ICacheParameter>? _cacheParameters; 188IReadOnlyDictionary<string, ICacheParameter> ITemplateInfo.CacheParameters 194Dictionary<string, ICacheParameter> cacheParameters = new Dictionary<string, ICacheParameter>();
Microsoft.TemplateEngine.Utils (1)
IScanTemplateInfoExtensions.cs (1)
60public IReadOnlyDictionary<string, ICacheParameter> CacheParameters => throw new NotSupportedException();
Microsoft.TemplateSearch.Common (5)
Abstractions\TemplateSearchData.cs (1)
89IReadOnlyDictionary<string, ICacheParameter> ITemplateInfo.CacheParameters => TemplateInfo.CacheParameters;
TemplateDiscoveryMetadata\BlobStorageTemplateInfo.cs (4)
122public IReadOnlyDictionary<string, ICacheParameter> CacheParameters { get; private set; } = new Dictionary<string, ICacheParameter>(); 284Dictionary<string, ICacheParameter> legacyParams = new Dictionary<string, ICacheParameter>();