Reads and returns data of type from the message.
()
| 95 | /// Reads and returns data of type <see cref="Int32"/> from the message. |
| 96 | /// </summary> |
| 97 | public int ReadInt32() |
| 98 | { |
| 99 | int value = 0; |
| 100 | ReadBytes((byte*)&value, sizeof(int)); |
| 101 | return value; |
| 102 | } |
| 103 | |
| 104 | /// <summary> |
| 105 | /// Writes data of type <see cref="Int16"/> into the message. |
nothing calls this directly
no test coverage detected