JsonValueExtensionsGetGuidOrDefault Method
Gets the specified
JsonValue as a
Guid value
if
Type property of the specified
json parameter is
String
and it can be converted to
Guid; otherwise, returns
defaultValue.
Namespace: KGySoft.JsonAssembly: KGySoft.Json (in KGySoft.Json.dll) Version: 3.0.0
public static Guid GetGuidOrDefault(
this JsonValue json,
Guid defaultValue = default
)
<ExtensionAttribute>
Public Shared Function GetGuidOrDefault (
json As JsonValue,
Optional defaultValue As Guid = Nothing
) As Guid
public:
[ExtensionAttribute]
static Guid GetGuidOrDefault(
JsonValue json,
Guid defaultValue = Guid()
)
[<ExtensionAttribute>]
static member GetGuidOrDefault :
json : JsonValue *
?defaultValue : Guid
(* Defaults:
let _defaultValue = defaultArg defaultValue new Guid()
*)
-> Guid
- json JsonValue
- The JsonValue to be converted to Guid.
- defaultValue Guid (Optional)
- The value to be returned if the conversion fails. This parameter is optional.
Default value: Empty.
GuidA
Guid value if
json could be converted; otherwise,
defaultValue.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).