JStreamAsyncNet 4.7.0.1
.NET Standard 2.1
Install-Package JStreamAsyncNet -Version 4.7.0.1
dotnet add package JStreamAsyncNet --version 4.7.0.1
<PackageReference Include="JStreamAsyncNet" Version="4.7.0.1" />
For projects that support PackageReference, copy this XML node into the project file to reference the package.
paket add JStreamAsyncNet --version 4.7.0.1
The NuGet Team does not provide support for this client. Please contact its maintainers for support.
#r "nuget: JStreamAsyncNet, 4.7.0.1"
#r directive can be used in F# Interactive, C# scripting and .NET Interactive. Copy this into the interactive tool or source code of the script to reference the package.
// Install JStreamAsyncNet as a Cake Addin
#addin nuget:?package=JStreamAsyncNet&version=4.7.0.1
// Install JStreamAsyncNet as a Cake Tool
#tool nuget:?package=JStreamAsyncNet&version=4.7.0.1
The NuGet Team does not provide support for this client. Please contact its maintainers for support.
JStreamAsyncNet
Easy way to serialize/deserialize objects to/from an async stream
Attention: The stream will be disposed
How to use
Installation
Nuget Package Manager Console:
Install-Package JStreamAsyncNet
.Net CLI:
dotnet add package JStreamAsyncNet
Using with HttpResponseMessage
MyObject @object = await client.GetAsync(uriObject).ToObjectAsync<MyObject>();
MyObject[] array = await client.GetAsync(uriArray).ToArrayAsync<MyObject>();
or if you want to manage the response(here's implementation of methods used above)
HttpResponseMessage responseObject = await client.GetAsync(uriObject);
responseObject.EnsureSuccessStatusCode();
MyObject @object = await responseObject.Content.ReadAsStreamAsync().ToObjectAsync<MyObject>();
HttpResponseMessage responseArray = await client.GetAsync(uriArray);
responseArray.EnsureSuccessStatusCode();
MyObject[] array = await responseArray.Content.ReadAsStreamAsync().ToArrayAsync<MyObject>();
Using with FileStream and Stream
MyObject @object = await File.OpenRead(filePath).ToObjectAsync<MyObject>();
//some act for @object
await File.OpenWrite(filePath).WriteFromObjectAsync(@object);
MyObject[] array = await File.OpenRead(filePath).ToArrayAsync<MyObject>();
//some act for array
await File.OpenWrite(filePath).WriteFromArrayAsync(array);
Product | Versions |
---|---|
.NET | net5.0 net5.0-windows net6.0 net6.0-android net6.0-ios net6.0-maccatalyst net6.0-macos net6.0-tvos net6.0-windows |
.NET Core | netcoreapp3.0 netcoreapp3.1 |
.NET Standard | netstandard2.1 |
MonoAndroid | monoandroid |
MonoMac | monomac |
MonoTouch | monotouch |
Tizen | tizen60 |
Xamarin.iOS | xamarinios |
Xamarin.Mac | xamarinmac |
Xamarin.TVOS | xamarintvos |
Xamarin.WatchOS | xamarinwatchos |
Compatible target framework(s)
Additional computed target framework(s)
Learn more about Target Frameworks and .NET Standard.
-
.NETStandard 2.1
- System.Text.Json (>= 4.7.0)
NuGet packages (3)
Showing the top 3 NuGet packages that depend on JStreamAsyncNet:
Package | Downloads |
---|---|
IOptionsWriter
appsettings.json writer |
|
Tuna.Framework
This is a useful framework for developer |
|
ch1seL.FileRepository
Package Description |
GitHub repositories
This package is not used by any popular GitHub repositories.
used System.Text.Json instead of Newtonsoft.Json