5 types derived from ServerProtocol
System.Web.Services (5)
System\Web\Services\Protocols\DiscoveryServerProtocol.cs (1)
223internal sealed class DiscoveryServerProtocol : ServerProtocol {
System\Web\Services\Protocols\DocumentationServerProtocol.cs (1)
100internal sealed class DocumentationServerProtocol : ServerProtocol {
System\Web\Services\Protocols\HttpServerProtocol.cs (1)
130internal abstract class HttpServerProtocol : ServerProtocol {
System\Web\Services\Protocols\SoapServerProtocol.cs (1)
226public class SoapServerProtocol : ServerProtocol {
System\Web\Services\Protocols\WebServiceHandlerFactory.cs (1)
162internal class UnsupportedRequestProtocol : ServerProtocol {
22 references to ServerProtocol
System.Web.Services (22)
System\Web\Services\Protocols\DiscoveryServerProtocol.cs (1)
203protected override ServerProtocol CreateIfRequestCompatible(HttpRequest request) {
System\Web\Services\Protocols\DocumentationServerProtocol.cs (1)
88protected override ServerProtocol CreateIfRequestCompatible(HttpRequest request) {
System\Web\Services\Protocols\HttpGetServerProtocol.cs (1)
10protected override ServerProtocol CreateIfRequestCompatible(HttpRequest request) {
System\Web\Services\Protocols\HttpPostLocalhostServerProtocol.cs (1)
12protected override ServerProtocol CreateIfRequestCompatible(HttpRequest request) {
System\Web\Services\Protocols\HttpPostServerProtocol.cs (1)
10protected override ServerProtocol CreateIfRequestCompatible(HttpRequest request) {
System\Web\Services\Protocols\RemoteDebugger.cs (2)
63internal static bool IsServerCallInEnabled(ServerProtocol protocol, out string stringBuffer) { 249internal void NotifyServerCallEnter(ServerProtocol protocol, string stringBuffer) {
System\Web\Services\Protocols\ServerProtocol.cs (5)
187result = ServerProtocol.DefaultCreateCustomKeyForAspNetWebServiceMetadataCache; 221CreateCustomKeyForAspNetWebServiceMetadataCache createKey = ServerProtocol.GetCreateCustomKeyForAspNetWebServiceMetadataCacheDelegate(serverType); 304internal ServerProtocol Create(Type type, HttpContext context, HttpRequest request, HttpResponse response, out bool abortProcessing) { 305ServerProtocol serverProtocol = null; 329protected abstract ServerProtocol CreateIfRequestCompatible(HttpRequest request);
System\Web\Services\Protocols\SoapServerProtocol.cs (3)
210protected override ServerProtocol CreateIfRequestCompatible(HttpRequest request) { 938System.Web.Services.Protocols.ServerProtocol.SetHttpResponseStatusCode(response, 948System.Web.Services.Protocols.ServerProtocol.SetHttpResponseStatusCode(response,
System\Web\Services\Protocols\WebServiceHandler.cs (6)
31ServerProtocol protocol; 39internal WebServiceHandler(ServerProtocol protocol) { 382internal SyncSessionlessHandler(ServerProtocol protocol) : base(protocol) { } 399internal SyncSessionHandler(ServerProtocol protocol) : base(protocol) { } 404internal AsyncSessionlessHandler(ServerProtocol protocol) : base(protocol) { } 428internal AsyncSessionHandler(ServerProtocol protocol) : base(protocol) { }
System\Web\Services\Protocols\WebServiceHandlerFactory.cs (1)
93ServerProtocol protocol = null;