CosmosSerializer.FromStream<T>(Stream) Method
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Convert a Stream of JSON to an object. The implementation is responsible for Disposing of the stream, including when an exception is thrown, to avoid memory leaks.
public abstract T FromStream<T> (System.IO.Stream stream);
abstract member FromStream : System.IO.Stream -> 'T
Public MustOverride Function FromStream(Of T) (stream As Stream) As T
Type Parameters
- T
Any type passed to Container.
Parameters
- stream
- Stream
The Stream response containing JSON from Cosmos DB.
Returns
T
The object deserialized from the stream.
Applies to
Współpracuj z nami w serwisie GitHub
Źródło tej zawartości można znaleźć w witrynie GitHub, gdzie można również tworzyć i przeglądać problemy i żądania ściągnięcia. Więcej informacji znajdziesz w naszym przewodniku dla współtwórców.
Azure SDK for .NET