Writes raw bytes into the message. The bytes that will be written. The amount of bytes to write from the bytes pointer.
(byte* bytes, int length)
| 13 | /// <param name="bytes">The bytes that will be written.</param> |
| 14 | /// <param name="length">The amount of bytes to write from the bytes pointer.</param> |
| 15 | public void WriteBytes(byte* bytes, int length) |
| 16 | { |
| 17 | WriteData(new IntPtr(bytes), length); |
| 18 | } |
| 19 | |
| 20 | /// <summary> |
| 21 | /// Reads raw bytes from the message into the given byte array. |
nothing calls this directly
no test coverage detected