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