1 write to httpInput
System.ServiceModel (1)
System\ServiceModel\Channels\HttpChannelHelpers.cs (1)
650this.httpInput = httpInput;
15 references to httpInput
System.ServiceModel (15)
System\ServiceModel\Channels\HttpChannelHelpers.cs (15)
657httpInput.ValidateContentType(); 658this.inputStream = httpInput.GetInputStream(true); 660if (!httpInput.HasContent) 662if (httpInput.messageEncoder.MessageVersion == MessageVersion.None) 672else if (httpInput.streamed || httpInput.ContentLength == -1) 674if (httpInput.streamed) 676this.message = httpInput.ReadStreamedMessage(inputStream); 680this.message = httpInput.ReadChunkedBufferedMessage(inputStream); 686this.requestException = httpInput.ProcessHttpAddressing(this.message); 709this.buffer = this.httpInput.GetMessageBuffer(); 763this.message = this.httpInput.DecodeBufferedMessage(new ArraySegment<byte>(buffer.Array, 0, offset), inputStream); 764this.requestException = this.httpInput.ProcessHttpAddressing(this.message); 811this.message = this.httpInput.ReadBufferedMessage(this.httpRequestMessage); 812this.requestException = this.httpInput.ProcessHttpAddressing(this.message);