5 instantiations of InternalByteStreamMessage
System.ServiceModel.Channels (5)
System\ServiceModel\Channels\ByteStreamMessage.cs (5)
43return new InternalByteStreamMessage(stream, quotas, moveBodyReaderToContent); 48return new InternalByteStreamMessage(httpRequestMessage, quotas, true); // moveBodyReaderToContent is true, for consistency with the other implementations of Message (including the Message base class itself) 53return new InternalByteStreamMessage(httpResponseMessage, quotas, true); // moveBodyReaderToContent is true, for consistency with the other implementations of Message (including the Message base class itself) 58return new InternalByteStreamMessage(bufferedMessageData, quotas, moveBodyReaderToContent); 721return new InternalByteStreamMessage(this.messageData, this.headers, this.properties, this.quotas, this.moveBodyReaderToContent);
3 references to InternalByteStreamMessage
System.ServiceModel.Channels (3)
System\ServiceModel\Channels\ByteStreamMessage.cs (3)
64return message is InternalByteStreamMessage; 391InternalByteStreamMessage message; 394public OnWriteMessageAsyncResult(XmlDictionaryWriter writer, InternalByteStreamMessage message, AsyncCallback callback, object state)