2 writes to httpOutput
System.ServiceModel (2)
System\ServiceModel\Channels\HttpRequestContext.cs (2)
295this.httpOutput = GetHttpOutputCore(message); 434this.httpOutput = this.GetHttpOutputCore(new NullMessage());
14 references to httpOutput
System.ServiceModel (14)
System\ServiceModel\Channels\HttpRequestContext.cs (14)
129if (this.httpOutput != null) 131return this.httpOutput; 139if (this.httpOutput != null) 141this.httpOutput.Abort(HttpAbortReason.Aborted); 151if (this.httpOutput != null) 153this.httpOutput.Close(); 303&& requestStream.EnableDelayedAccept(this.httpOutput, closeOnReceivedEof)) 324httpOutput.Close(); 432if (this.httpOutput == null) 436this.httpOutput.Send(httpResponseMessage, this.DefaultSendTimeout); 592context.httpOutput.EndSend(result); 597context.httpOutput.Close(); 736result = context.httpOutput.BeginSend(this.timeoutHelper.RemainingTime(), onSendCompleted, this); 740result = context.httpOutput.BeginSend(httpResponseMessage, this.timeoutHelper.RemainingTime(), onSendCompleted, this);