29 references to Type
System.Web.Services (29)
System\Web\Services\Protocols\DiscoveryServerProtocol.cs (7)
231if (null == (serverType = (DiscoveryServerType)GetFromCache(typeof(DiscoveryServerProtocol), Type)) 232&& null == (serverType = (DiscoveryServerType)GetFromCache(typeof(DiscoveryServerProtocol), Type, true))) { 234if (null == (serverType = (DiscoveryServerType)GetFromCache(typeof(DiscoveryServerProtocol), Type)) 235&& null == (serverType = (DiscoveryServerType)GetFromCache(typeof(DiscoveryServerProtocol), Type, true))) 240bool excludeSchemeHostPortFromCachingKey = this.IsCacheUnderPressure(typeof(DiscoveryServerProtocol), Type); 242serverType = new DiscoveryServerType(Type, escapedUri, excludeSchemeHostPortFromCachingKey); 243AddToCache(typeof(DiscoveryServerProtocol), Type, serverType, excludeSchemeHostPortFromCachingKey);
System\Web\Services\Protocols\DocumentationServerProtocol.cs (7)
111if (null == (serverType = (DocumentationServerType)GetFromCache(typeof(DocumentationServerProtocol), Type)) 112&& null == (serverType = (DocumentationServerType)GetFromCache(typeof(DocumentationServerProtocol), Type, true))) { 114if (null == (serverType = (DocumentationServerType)GetFromCache(typeof(DocumentationServerProtocol), Type)) 115&& null == (serverType = (DocumentationServerType)GetFromCache(typeof(DocumentationServerProtocol), Type, true))) 121bool excludeSchemeHostPortFromCachingKey = this.IsCacheUnderPressure(typeof(DocumentationServerProtocol), Type); 123serverType = new DocumentationServerType(Type, escapedUri, excludeSchemeHostPortFromCachingKey); 124AddToCache(typeof(DocumentationServerProtocol), Type, serverType, excludeSchemeHostPortFromCachingKey);
System\Web\Services\Protocols\HttpServerProtocol.cs (7)
144if (null == (serverType = (HttpServerType)GetFromCache(typeof(HttpServerProtocol), Type)) 145&& null == (serverType = (HttpServerType)GetFromCache(typeof(HttpServerProtocol), Type, true))) 149if (null == (serverType = (HttpServerType)GetFromCache(typeof(HttpServerProtocol), Type)) 150&& null == (serverType = (HttpServerType)GetFromCache(typeof(HttpServerProtocol), Type, true))) 152bool excludeSchemeHostPortFromCachingKey = this.IsCacheUnderPressure(typeof(HttpServerProtocol), Type); 153serverType = new HttpServerType(Type); 154AddToCache(typeof(HttpServerProtocol), Type, serverType, excludeSchemeHostPortFromCachingKey);
System\Web\Services\Protocols\RemoteDebugger.cs (1)
253methodBuilder.Append(protocol.Type.FullName);
System\Web\Services\Protocols\SoapServerProtocol.cs (7)
309if (null == (serverType = (SoapServerType)GetFromCache(typeof(SoapServerProtocol), Type)) 310&& null == (serverType = (SoapServerType)GetFromCache(typeof(SoapServerProtocol), Type, true))) 314if (null == (serverType = (SoapServerType)GetFromCache(typeof(SoapServerProtocol), Type)) 315&& null == (serverType = (SoapServerType)GetFromCache(typeof(SoapServerProtocol), Type, true))) 317bool excludeSchemeHostPortFromCachingKey = this.IsCacheUnderPressure(typeof(SoapServerProtocol), Type); 318serverType = new SoapServerType(Type, protocolsSupported); 319AddToCache(typeof(SoapServerProtocol), Type, serverType, excludeSchemeHostPortFromCachingKey);