JsonValueExtensionsTryGetDateOnly(JsonValue, String, DateOnly) Method
Tries to get the specified
JsonValue as a
DateOnly value using the specified
format
if
Type property of the specified
json parameter is
String.
Namespace: KGySoft.JsonAssembly: KGySoft.Json (in KGySoft.Json.dll) Version: 3.0.0
public static bool TryGetDateOnly(
this JsonValue json,
string format,
out DateOnly value
)
<ExtensionAttribute>
Public Shared Function TryGetDateOnly (
json As JsonValue,
format As String,
<OutAttribute> ByRef value As DateOnly
) As Boolean
public:
[ExtensionAttribute]
static bool TryGetDateOnly(
JsonValue json,
String^ format,
[OutAttribute] DateOnly% value
)
[<ExtensionAttribute>]
static member TryGetDateOnly :
json : JsonValue *
format : string *
value : DateOnly byref -> bool
- json JsonValue
- The JsonValue to be converted to DateOnly.
- format String
- Specifies the exact format of the date in the JsonValue.
- value DateOnly
- When this method returns, the result of the conversion, if json could be converted;
otherwise, MinValue. This parameter is passed uninitialized.
Boolean if the specified
JsonValue could be converted; otherwise,
.In Visual Basic and C#, you can call this method as an instance method on any object of type
JsonValue. When you use instance method syntax to call this method, omit the first parameter. For more information, see
Extension Methods (Visual Basic) or
Extension Methods (C# Programming Guide).