コード例 #1
0
 /// <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);
 }
コード例 #2
0
ファイル: APipeConnection.cs プロジェクト: bo3b/iZ3D
 public void WriteBytes(byte[] bytes, int offset, int size)
 {
     CheckIfDisposed();
     NamedPipeWrapper.WriteBytes(Handle, bytes, offset, size);
 }