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

◆ TryGetDateTime()

bool System.Text.Json.Utf8JsonReader.TryGetDateTime ( out DateTime value)
inline

Definition at line 4768 of file Utf8JsonReader.cs.

4769 {
4770 if (TokenType != JsonTokenType.String)
4771 {
4772 throw ThrowHelper.GetInvalidOperationException_ExpectedString(TokenType);
4773 }
4775 }
bool TryGetDateTimeCore(out DateTime value)

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

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