-
Notifications
You must be signed in to change notification settings - Fork 8
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
3 changed files
with
33 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
28 changes: 28 additions & 0 deletions
28
Common/JsonSerialization/TimeSpanToMillisecondsConverter.cs
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,28 @@ | ||
namespace OpenShock.Common.JsonSerialization; | ||
|
||
using System; | ||
using System.Text.Json; | ||
using System.Text.Json.Serialization; | ||
|
||
public class TimeSpanToMillisecondsConverter : JsonConverter<TimeSpan> | ||
{ | ||
// Converts TimeSpan to JSON | ||
public override void Write(Utf8JsonWriter writer, TimeSpan value, JsonSerializerOptions options) | ||
{ | ||
// Convert TimeSpan to total milliseconds and write it as a JSON number | ||
writer.WriteNumberValue(value.TotalMilliseconds); | ||
} | ||
|
||
// Converts JSON to TimeSpan | ||
public override TimeSpan Read(ref Utf8JsonReader reader, Type typeToConvert, JsonSerializerOptions options) | ||
{ | ||
if (reader.TokenType != JsonTokenType.Number) | ||
{ | ||
throw new JsonException("Expected number representing milliseconds."); | ||
} | ||
|
||
// Read the milliseconds as a double and convert to TimeSpan | ||
var milliseconds = reader.GetDouble(); | ||
return TimeSpan.FromMilliseconds(milliseconds); | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters