JsonValueExtensions.TryReadAsType<T> Method (JsonValue, T%)
[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 generic type.
Namespace: System.Runtime.Serialization.Json
Assembly: System.Json (in System.Json.dll)
Syntax
'Declaration
<ExtensionAttribute> _
Public Shared Function TryReadAsType(Of T) ( _
jsonValue As JsonValue, _
<OutAttribute> ByRef valueOfT As T _
) As Boolean
public static bool TryReadAsType<T>(
this JsonValue jsonValue,
out T valueOfT
)
[ExtensionAttribute]
public:
generic<typename T>
static bool TryReadAsType(
JsonValue^ jsonValue,
[OutAttribute] T% valueOfT
)
static member TryReadAsType :
jsonValue:JsonValue *
valueOfT:'T byref -> bool
JScript does not support generic types or methods.
Type Parameters
- T
The generic type.
Parameters
- jsonValue
Type: System.Json.JsonValue
The Json value.
- valueOfT
Type: T%
The value of the generic type.
Return Value
Type: System.Boolean
The read JsonValueExtensions as a generic 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
- Full trust for the immediate caller. This member cannot be used by partially trusted code. For more information, see Using Libraries from Partially Trusted Code.