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