Writes data of type into the message.
(Guid value)
| 266 | /// Writes data of type <see cref="Guid"/> into the message. |
| 267 | /// </summary> |
| 268 | public void WriteGuid(Guid value) |
| 269 | { |
| 270 | WriteBytes((byte*)&value, sizeof(Guid)); |
| 271 | } |
| 272 | |
| 273 | /// <summary> |
| 274 | /// Reads and returns data of type <see cref="Guid"/> from the message. |
no outgoing calls
no test coverage detected