4 instantiations of NameValueCache
System.ServiceModel.Web (4)
System\ServiceModel\Description\WebScriptClientGenerator.cs (1)
39this.proxyCache = new NameValueCache<string>();
System\ServiceModel\Dispatcher\FormatSelectingMessageInspector.cs (1)
60this.caches.Add(operationName, new NameValueCache<FormatContentTypePair>(maxCachedAcceptHeaders));
System\ServiceModel\Dispatcher\HelpPage.cs (2)
41this.operationPageCache = new NameValueCache<string>(); 42this.helpPageCache = new NameValueCache<string>();
5 references to NameValueCache
System.ServiceModel.Web (5)
System\ServiceModel\Description\WebScriptClientGenerator.cs (1)
22NameValueCache<string> proxyCache;
System\ServiceModel\Dispatcher\FormatSelectingMessageInspector.cs (2)
24Dictionary<string, NameValueCache<FormatContentTypePair>> caches; 47this.caches = new Dictionary<string, NameValueCache<FormatContentTypePair>>();
System\ServiceModel\Dispatcher\HelpPage.cs (2)
35NameValueCache<string> operationPageCache; 36NameValueCache<string> helpPageCache;