Exemplo n.º 1
0
 ///<summary>Writes a byte array into the message body being assembled.</summary>
 public IStreamMessageBuilder WriteBytes(byte[] source)
 {
     StreamWireFormatting.WriteBytes(Writer, source);
     return(this);
 }
Exemplo n.º 2
0
 ///<summary>Writes a section of a byte array into the message body being assembled.</summary>
 public IStreamMessageBuilder WriteBytes(byte[] source, int offset, int count)
 {
     StreamWireFormatting.WriteBytes(Writer, source, offset, count);
     return(this);
 }