Пример #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);
 }
Пример #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);
 }