ActiveReports 19 .NET Edition
MESCIUS.ActiveReports.Core.Rdl Assembly / GrapeCity.ActiveReports.Rdl.Json Namespace / ReportJsonSerializer Class / DeserializeAsync<T> Method
The type of the object to deserialize.
A System.IO.Stream containing the JSON data in UTF-8 format.

In This Topic
    DeserializeAsync<T> Method
    In This Topic
    Deserializes an object of the specified type from the report definition model.
    Syntax
    'Declaration
     
    Public Shared Function DeserializeAsync(Of T)( _
       ByVal utf8Stream As Stream _
    ) As Task(Of T)
    public static Task<T> DeserializeAsync<T>( 
       Stream utf8Stream
    )

    Parameters

    utf8Stream
    A System.IO.Stream containing the JSON data in UTF-8 format.

    Type Parameters

    T
    The type of the object to deserialize.

    Return Value

    A task representing the asynchronous operation, with a result of the deserialized object.
    See Also