Reads and returns data of type from the message.
()
| 149 | /// Reads and returns data of type <see cref="UInt64"/> from the message. |
| 150 | /// </summary> |
| 151 | public ulong ReadUInt64() |
| 152 | { |
| 153 | ulong value = 0; |
| 154 | ReadBytes((byte*)&value, sizeof(ulong)); |
| 155 | return value; |
| 156 | } |
| 157 | |
| 158 | /// <summary> |
| 159 | /// Writes data of type <see cref="UInt32"/> into the message. |
nothing calls this directly
no test coverage detected