JsonValueExtensions.TryReadAsType Method (JsonValue, Type, Object%)

[This documentation is for preview only, and is subject to change in later releases. Blank topics are included as placeholders.]

Tries to read the JsonValueExtensions as a type.

Namespace:  System.Runtime.Serialization.Json
Assembly:  System.Json (in System.Json.dll)

Syntax

'Declaration
<ExtensionAttribute> _
Public Shared Function TryReadAsType ( _
    jsonValue As JsonValue, _
    type As Type, _
    <OutAttribute> ByRef value As Object _
) As Boolean
public static bool TryReadAsType(
    this JsonValue jsonValue,
    Type type,
    out Object value
)
[ExtensionAttribute]
public:
static bool TryReadAsType(
    JsonValue^ jsonValue, 
    Type^ type, 
    [OutAttribute] Object^% value
)
static member TryReadAsType : 
        jsonValue:JsonValue * 
        type:Type * 
        value:Object byref -> bool 
public static function TryReadAsType(
    jsonValue : JsonValue, 
    type : Type, 
    value : Object
) : boolean

Parameters

Return Value

Type: System.Boolean
The read JsonValueExtensions as a type.

Usage Note

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).

.NET Framework Security

See Also

Reference

JsonValueExtensions Class

TryReadAsType Overload

System.Runtime.Serialization.Json Namespace