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