Reads and returns data of type from the message.
()
| 167 | /// Reads and returns data of type <see cref="UInt32"/> from the message. |
| 168 | /// </summary> |
| 169 | public uint ReadUInt32() |
| 170 | { |
| 171 | uint value = 0; |
| 172 | ReadBytes((byte*)&value, sizeof(uint)); |
| 173 | return value; |
| 174 | } |
| 175 | |
| 176 | /// <summary> |
| 177 | /// Writes data of type <see cref="UInt16"/> into the message. |
nothing calls this directly
no test coverage detected