2 types derived from HttpPipeline
System.ServiceModel (2)
System\ServiceModel\Channels\HttpPipeline.cs (2)
211class EmptyHttpPipeline : HttpPipeline 386class NormalHttpPipeline : HttpPipeline
24 references to HttpPipeline
System.ServiceModel (24)
System\ServiceModel\Channels\HttpChannelListener.cs (8)
807public abstract bool CreateWebSocketChannelAndEnqueue(HttpRequestContext httpRequestContext, HttpPipeline httpPipeline, HttpResponseMessage httpResponseMessage, string subProtocol, Action dequeuedCallback); 920public override bool CreateWebSocketChannelAndEnqueue(HttpRequestContext httpRequestContext, HttpPipeline pipeline, HttpResponseMessage httpResponseMessage, string subProtocol, Action dequeuedCallback) 1506HttpPipeline pipeline = HttpPipeline.GetHttpPipeline(request); 1538HttpPipeline pipeline = HttpPipeline.GetHttpPipeline(request); 1574HttpPipeline httpPipeline = HttpPipeline.GetHttpPipeline(request);
System\ServiceModel\Channels\HttpPipeline.cs (11)
74public static HttpPipeline CreateHttpPipeline(HttpRequestContext httpRequestContext, TransportIntegrationHandler transportIntegrationHandler, bool isWebSocketTransport) 91public static HttpPipeline GetHttpPipeline(HttpRequestMessage httpRequestMessage) 100HttpPipeline httpPipeline = obj as HttpPipeline; 104throw FxTrace.Exception.AsError(new InvalidOperationException(SR.GetString(SR.HttpPipelineMessagePropertyTypeError, HttpPipelineKey, typeof(HttpPipeline)))); 319HttpPipeline thisPtr = (HttpPipeline)obj; 427public static HttpPipeline CreatePipeline(HttpRequestContext httpRequestContext, TransportIntegrationHandler transportIntegrationHandler, bool isWebSocketTransport) 815HttpPipeline.RemoveHttpPipeline(response.RequestMessage); 870HttpPipeline pipeline; 877HttpPipeline pipeline,
System\ServiceModel\Channels\HttpRequestContext.cs (3)
30HttpPipeline httpPipeline; 89HttpPipeline pipeline = this.httpPipeline; 172this.httpPipeline = HttpPipeline.CreateHttpPipeline(this, transportIntegrationHandler, this.IsWebSocketRequest);
System\ServiceModel\Channels\ServerWebSocketTransportDuplexSessionChannel.cs (2)
19HttpPipeline httpPipeline; 31HttpPipeline httpPipeline,