/// <summary>
 /// Writes an array of bytes to the pipe connection.
 /// </summary>
 /// <param name="bytes">The bytes array.</param>
 #endregion
 public void WriteBytes(byte[] bytes)
 {
     CheckIfDisposed();
     NamedPipeWrapper.WriteBytes(Handle, bytes);
 }
Esempio n. 2
0
 public void WriteBytes(byte[] bytes, int offset, int size)
 {
     CheckIfDisposed();
     NamedPipeWrapper.WriteBytes(Handle, bytes, offset, size);
 }