3 writes to SystemMeta
System (3)
net\System\Net\Cache\_Rfc2616CacheValidators.cs (1)
1788ctx.SystemMeta = new NameValueCollection(varyValues.Count+1, CaseInsensitiveAscii.StaticInstance);
net\System\Net\Cache\HttpRequestCacheValidator.cs (2)
456SystemMeta = new NameValueCollection(1, CaseInsensitiveAscii.StaticInstance); 657SystemMeta = new NameValueCollection((CacheEntry.EntryMetadata == null || CacheEntry.EntryMetadata.Count == 0? 2: CacheEntry.EntryMetadata.Count),
10 references to SystemMeta
System (10)
net\System\Net\Cache\_Rfc2616CacheValidators.cs (5)
1353if (ctx.SystemMeta == null || ctx.SystemMeta.Count == 0) { 1379string[] cacheValues = ctx.SystemMeta.GetValues((string)varyValues[i]); 1787if (ctx.SystemMeta == null) { 1792ctx.SystemMeta[(string)varyValues[i]] = headerValue;
net\System\Net\Cache\HttpRequestCacheValidator.cs (5)
455if (SystemMeta == null) 509if (SystemMeta != null) 511UpdateStringCollection(CacheEntry.SystemMetadata, SystemMeta, true); 655if (SystemMeta == null) 663string s = ParseNameValues(SystemMeta, CacheEntry.SystemMetadata, 0);