Пример #1
0
 internal DefaultMessageBuffer(MessageHeaders headers, MessageProperties properties, AttributeCollection attributes)
     : this(0, headers, properties, null, false, attributes)
 {
 }
Пример #2
0
 internal DefaultMessageBuffer(int maxBufferSize, MessageHeaders headers, MessageProperties properties, BodyWriter body, bool isFault, AttributeCollection attributes)
 {
     this.max_buffer_size = maxBufferSize;
     this.headers         = headers;
     this.body            = body;
     this.closed          = false;
     this.is_fault        = isFault;
     this.properties      = properties;
     this.attributes      = attributes;
 }
Пример #3
0
 public XPathMessageBuffer(IXPathNavigable source, MessageVersion version, int maxSizeOfHeaders, MessageProperties properties, AttributeCollection attributes)
 {
     this.source          = source;
     this.version         = version;
     this.max_header_size = maxSizeOfHeaders;
     this.properties      = properties;
     this.attributes      = attributes;
 }