1 write to httpOutput
System.ServiceModel (1)
System\ServiceModel\Channels\HttpChannelHelpers.cs (1)
2032this.httpOutput = httpOutput;
46 references to httpOutput
System.ServiceModel (46)
System\ServiceModel\Channels\HttpChannelHelpers.cs (46)
2041this.httpOutput.TraceSend(); 2042this.httpOutput.LogMessage(); 2054if (httpOutput.IsChannelBindingSupportEnabled) 2066if (!suppressEntityBody && !httpOutput.streamed) 2070buffer = httpOutput.SerializeBufferedMessage(this.httpResponseMessage); 2074buffer = httpOutput.SerializeBufferedMessage(httpOutput.message); 2077httpOutput.SetContentLength(buffer.Count); 2081if (this.httpOutput.WillGetOutputStreamCompleteSynchronously) 2083httpOutput.outputStream = httpOutput.GetOutputStream(); 2092IAsyncResult result = httpOutput.BeginGetOutputStream(onGetOutputStream, this); 2097httpOutput.outputStream = httpOutput.EndGetOutputStream(result); 2102this.httpOutput.TraceSend(); 2109if (this.httpOutput.WillGetOutputStreamCompleteSynchronously) 2111httpOutput.outputStream = httpOutput.GetOutputStream(); 2112httpOutput.ApplyChannelBinding(); 2121IAsyncResult result = httpOutput.BeginGetOutputStream(onGetOutputStream, this); 2126httpOutput.outputStream = httpOutput.EndGetOutputStream(result); 2127httpOutput.ApplyChannelBinding(); 2130if (!httpOutput.streamed) 2134buffer = httpOutput.SerializeBufferedMessage(this.httpResponseMessage); 2138buffer = httpOutput.SerializeBufferedMessage(httpOutput.message); 2141httpOutput.SetContentLength(buffer.Count); 2146this.httpOutput.TraceSend(); 2157if (httpOutput.streamed) 2181httpOutput.outputStream.BeginWrite(buffer.Array, buffer.Offset, buffer.Count, onWriteBody, this); 2210result = httpOutput.BeginWriteStreamedMessage(this.httpResponseMessage, timeoutHelper.RemainingTime(), onWriteStreamedMessage, this); 2217httpOutput.EndWriteStreamedMessage(result); 2250thisPtr.httpOutput.TraceSend(); 2258httpOutput.outputStream.EndWrite(result); 2277thisPtr.httpOutput.outputStream = thisPtr.httpOutput.EndGetOutputStream(result); 2278thisPtr.httpOutput.ApplyChannelBinding(); 2280if (!thisPtr.httpOutput.streamed && thisPtr.httpOutput.IsChannelBindingSupportEnabled) 2282thisPtr.buffer = thisPtr.httpOutput.SerializeBufferedMessage(thisPtr.httpOutput.message); 2283thisPtr.httpOutput.SetContentLength(thisPtr.buffer.Count); 2288thisPtr.httpOutput.TraceSend(); 2333thisPtr.httpOutput.TraceSend(); 2350thisPtr.httpOutput.TraceSend();