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