Terraria v1.4.4.9
Terraria source code documentation
Loading...
Searching...
No Matches

◆ TryGetDateTimeOffset()

bool System.Text.Json.Utf8JsonReader.TryGetDateTimeOffset ( out DateTimeOffset value)
inline

Definition at line 4816 of file Utf8JsonReader.cs.

4817 {
4818 if (TokenType != JsonTokenType.String)
4819 {
4820 throw ThrowHelper.GetInvalidOperationException_ExpectedString(TokenType);
4821 }
4823 }
bool TryGetDateTimeOffsetCore(out DateTimeOffset value)

References System.Text.Json.Dictionary, System.Text.Json.ThrowHelper.GetInvalidOperationException_ExpectedString(), System.Text.Json.Utf8JsonReader.TryGetDateTimeOffsetCore(), and System.value.

Referenced by System.Text.Json.Utf8JsonReader.GetDateTimeOffset().