[]
Deserializes an object of the specified type from the report definition model.
public static Task<T> DeserializeAsync<T>(Stream utf8Stream)
Type | Name | Description |
---|---|---|
Stream | utf8Stream | A Stream containing the JSON data in UTF-8 format. |
Type | Description |
---|---|
Task<T> | A task representing the asynchronous operation, with a result of the deserialized object. |
Name | Description |
---|---|
T | The type of the object to deserialize. |