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