2 types derived from HttpOutput
System.ServiceModel (2)
System\ServiceModel\Channels\HttpChannelHelpers.cs (2)
2375class WebRequestHttpOutput : HttpOutput 2906class ListenerResponseHttpOutput : HttpOutput
27 references to HttpOutput
System.ServiceModel (27)
System\ServiceModel\Channels\HttpChannelFactory.cs (4)
1229HttpOutput httpOutput = HttpOutput.CreateHttpOutput(this.webRequest, this.factory, request, this.factory.IsChannelBindingSupportEnabled); 1393HttpOutput httpOutput; 1546this.httpOutput = HttpOutput.CreateHttpOutput(this.request, this.factory, this.requestMessage, this.factory.IsChannelBindingSupportEnabled);
System\ServiceModel\Channels\HttpChannelHelpers.cs (14)
1539HttpOutput thisPtr = (HttpOutput)state; 1626HttpOutput httpOutput; 1631public WriteStreamedMessageAsyncResult(TimeSpan timeout, HttpOutput httpOutput, HttpResponseMessage httpResponseMessage, AsyncCallback callback, object state) 2019HttpOutput httpOutput; 2029public SendAsyncResult(HttpOutput httpOutput, HttpResponseMessage httpResponseMessage, bool suppressEntityBody, TimeSpan timeout, AsyncCallback callback, object state) 2365internal static HttpOutput CreateHttpOutput(HttpWebRequest httpWebRequest, IHttpTransportFactorySettings settings, Message message, bool enableChannelBindingSupport) 2370internal static HttpOutput CreateHttpOutput(HttpListenerResponse httpListenerResponse, IHttpTransportFactorySettings settings, Message message, string httpMethod) 2723HttpOutput httpOutput; 2728public GetOutputStreamAsyncResult(HttpWebRequest httpWebRequest, HttpOutput httpOutput, AsyncCallback callback, object state) 2800HttpOutput httpOutput; 2803public WebRequestOutputStream(Stream requestStream, HttpWebRequest httpWebRequest, HttpOutput httpOutput) 3937HttpOutput httpOutput; 3953public bool EnableDelayedAccept(HttpOutput output, bool closeHttpOutput)
System\ServiceModel\Channels\HttpPipeline.cs (4)
206protected HttpOutput GetHttpOutput(Message message) 287HttpOutput httpOutput = this.GetHttpOutput(message); 364HttpOutput httpOutput = this.GetHttpOutput(message); 402HttpOutput httpOutput;
System\ServiceModel\Channels\HttpRequestContext.cs (5)
25HttpOutput httpOutput; 124public abstract HttpOutput GetHttpOutput(Message message); 127public HttpOutput GetHttpOutputCore(Message message) 830public override HttpOutput GetHttpOutput(Message message) 848return HttpOutput.CreateHttpOutput(listenerContext.Response, Listener, message, this.HttpMethod);