Reads and returns data of type from the message.
()
| 77 | /// Reads and returns data of type <see cref="Int64"/> from the message. |
| 78 | /// </summary> |
| 79 | public long ReadInt64() |
| 80 | { |
| 81 | long value = 0; |
| 82 | ReadBytes((byte*)&value, sizeof(long)); |
| 83 | return value; |
| 84 | } |
| 85 | |
| 86 | /// <summary> |
| 87 | /// Writes data of type <see cref="Int32"/> into the message. |
nothing calls this directly
no test coverage detected