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