6 instantiations of UnsupportedRequestProtocol
System.Web.Services (6)
System\Web\Services\Protocols\DiscoveryServerProtocol.cs (1)
209
return new
UnsupportedRequestProtocol
(405);
System\Web\Services\Protocols\DocumentationServerProtocol.cs (1)
94
return new
UnsupportedRequestProtocol
(405);
System\Web\Services\Protocols\HttpGetServerProtocol.cs (1)
15
return new
UnsupportedRequestProtocol
(405);
System\Web\Services\Protocols\HttpPostLocalhostServerProtocol.cs (1)
17
return new
UnsupportedRequestProtocol
(405);
System\Web\Services\Protocols\HttpPostServerProtocol.cs (1)
15
return new
UnsupportedRequestProtocol
(405);
System\Web\Services\Protocols\SoapServerProtocol.cs (1)
216
return new
UnsupportedRequestProtocol
(405);
3 references to UnsupportedRequestProtocol
System.Web.Services (3)
System\Web\Services\Protocols\WebServiceHandlerFactory.cs (3)
98
if ((protocol != null && protocol.GetType() != typeof(
UnsupportedRequestProtocol
)) || abort)
121
else if (protocol is
UnsupportedRequestProtocol
) {
122
throw Tracing.ExceptionThrow(caller, new HttpException(((
UnsupportedRequestProtocol
)protocol).HttpCode, Res.GetString(Res.WebUnrecognizedRequestFormat)));