Nerdbank.Streams
2.11.74
Prefix Reserved
.NET 6.0
This package targets .NET 6.0. The package is compatible with this framework or higher.
.NET Standard 2.0
This package targets .NET Standard 2.0. The package is compatible with this framework or higher.
There is a newer version of this package available.
See the version list below for details.
See the version list below for details.
dotnet add package Nerdbank.Streams --version 2.11.74
NuGet\Install-Package Nerdbank.Streams -Version 2.11.74
This command is intended to be used within the Package Manager Console in Visual Studio, as it uses the NuGet module's version of Install-Package.
<PackageReference Include="Nerdbank.Streams" Version="2.11.74" />
For projects that support PackageReference, copy this XML node into the project file to reference the package.
paket add Nerdbank.Streams --version 2.11.74
The NuGet Team does not provide support for this client. Please contact its maintainers for support.
#r "nuget: Nerdbank.Streams, 2.11.74"
#r directive can be used in F# Interactive and Polyglot Notebooks. Copy this into the interactive tool or source code of the script to reference the package.
// Install Nerdbank.Streams as a Cake Addin #addin nuget:?package=Nerdbank.Streams&version=2.11.74 // Install Nerdbank.Streams as a Cake Tool #tool nuget:?package=Nerdbank.Streams&version=2.11.74
The NuGet Team does not provide support for this client. Please contact its maintainers for support.
Specialized .NET Stream classes
Enhanced streams for communication in-proc or across the Internet.
Features
SimplexStream
is meant to allow two parties to communicate one direction. Anything written to the stream can subsequently be read from it. You can share thisStream
with any two parties (in the same AppDomain) and one can send messages to the other.FullDuplexStream
creates a pair of bidirectional streams for in-proc two-way communication; it also creates a single bidirectional stream from two unidirectional streams.MultiplexingStream
allows you to split any bidirectional .NET Stream into many sub-streams (called channels). This allows two parties to establish just one transport stream (e.g. named pipe or web socket) and use it for many independent protocols. For example, one might set up JSON-RPC on one channel and use other channels for efficient binary transfers.AsStream()
wraps aWebSocket
,System.IO.Pipelines.PipeReader
,System.IO.Pipelines.PipeWriter
, orSystem.IO.Pipelines.IDuplexPipe
with aSystem.IO.Stream
for reading and/or writing.UsePipe()
enables reading from and writing to aStream
orWebSocket
using thePipeReader
andPipeWriter
APIs.Stream.ReadSlice(long)
creates a sub-stream that ends after a given number of bytes.PipeReader.ReadSlice(long)
creates a sub-PipeReader
that ends after a given number of bytes.MonitoringStream
wraps another Stream and raises events for all I/O calls so you can monitor and/or trace the data as it goes by.WriteSubstream
andReadSubstream
allow you to serialize data of an unknown length as part of a larger stream, and later deserialize it such in reading the substream, you cannot read more bytes than were written to it.Sequence<T>
is a builder forReadOnlySequence<T>
.PrefixingBufferWriter<T>
wraps anotherIBufferWriter<T>
to allow for prefixing some header to the next written buffer, which may be arbitrarily long.BufferTextWriter
is aTextWriter
-derived type that can write directly to anyIBufferWriter<byte>
, making it more reusable thanStreamWriter
and thus allows for alloc-free writing across many writers.SequenceTextReader
is aTextReader
-derived type that can read directly from anyReadOnlySequence<byte>
, making it more reusable thanStreamReader
and thus allows for alloc-free reading across many sequences.DuplexPipe
is a trivial implementation ofIDuplexPipe
.Stream.ReadBlockAsync
guarantees to fill the supplied buffer except under certain documented conditions, instead of the regularReadAsync
guarantee of supplying at least 1 byte.
Product | Versions Compatible and additional computed target framework versions. |
---|---|
.NET | net5.0 was computed. net5.0-windows was computed. net6.0 is compatible. net6.0-android was computed. net6.0-ios was computed. net6.0-maccatalyst was computed. net6.0-macos was computed. net6.0-tvos was computed. net6.0-windows was computed. net7.0 was computed. net7.0-android was computed. net7.0-ios was computed. net7.0-maccatalyst was computed. net7.0-macos was computed. net7.0-tvos was computed. net7.0-windows was computed. net8.0 was computed. net8.0-android was computed. net8.0-browser was computed. net8.0-ios was computed. net8.0-maccatalyst was computed. net8.0-macos was computed. net8.0-tvos was computed. net8.0-windows was computed. |
.NET Core | netcoreapp2.0 was computed. netcoreapp2.1 was computed. netcoreapp2.2 was computed. netcoreapp3.0 was computed. netcoreapp3.1 was computed. |
.NET Standard | netstandard2.0 is compatible. netstandard2.1 is compatible. |
.NET Framework | net461 was computed. net462 was computed. net463 was computed. net47 was computed. net471 was computed. net472 was computed. net48 was computed. net481 was computed. |
MonoAndroid | monoandroid was computed. |
MonoMac | monomac was computed. |
MonoTouch | monotouch was computed. |
Tizen | tizen40 was computed. tizen60 was computed. |
Xamarin.iOS | xamarinios was computed. |
Xamarin.Mac | xamarinmac was computed. |
Xamarin.TVOS | xamarintvos was computed. |
Xamarin.WatchOS | xamarinwatchos was computed. |
Compatible target framework(s)
Included target framework(s) (in package)
Learn more about Target Frameworks and .NET Standard.
-
.NETStandard 2.0
- Microsoft.Bcl.AsyncInterfaces (>= 6.0.0)
- Microsoft.VisualStudio.Threading (>= 17.10.48)
- Microsoft.VisualStudio.Validation (>= 17.8.8)
- System.IO.Pipelines (>= 8.0.0)
- System.Runtime.CompilerServices.Unsafe (>= 6.0.0)
-
.NETStandard 2.1
- Microsoft.Bcl.AsyncInterfaces (>= 6.0.0)
- Microsoft.VisualStudio.Threading (>= 17.10.48)
- Microsoft.VisualStudio.Validation (>= 17.8.8)
- System.IO.Pipelines (>= 8.0.0)
- System.Runtime.CompilerServices.Unsafe (>= 6.0.0)
-
net6.0
- Microsoft.VisualStudio.Threading (>= 17.10.48)
- Microsoft.VisualStudio.Validation (>= 17.8.8)
- System.IO.Pipelines (>= 8.0.0)
NuGet packages (35)
Showing the top 5 NuGet packages that depend on Nerdbank.Streams:
Package | Downloads |
---|---|
Microsoft.VisualStudio.Utilities
A member of the Visual Studio SDK |
|
StreamJsonRpc
A cross-platform .NETStandard library that implements the JSON-RPC wire protocol and can use System.IO.Stream, System.IO.Pipelines or WebSocket so you can use it with any transport. |
|
Microsoft.VisualStudio.Shell.Framework
A member of the Visual Studio SDK |
|
Microsoft.VisualStudio.Imaging
A member of the Visual Studio SDK |
|
Microsoft.VisualStudio.Shell.15.0
A member of the Visual Studio SDK |
GitHub repositories (23)
Showing the top 5 popular GitHub repositories that depend on Nerdbank.Streams:
Repository | Stars |
---|---|
dotnet/roslyn
The Roslyn .NET compiler provides C# and Visual Basic languages with rich code analysis APIs.
|
|
MessagePack-CSharp/MessagePack-CSharp
Extremely Fast MessagePack Serializer for C#(.NET, .NET Core, Unity, Xamarin). / msgpack.org[C#]
|
|
BililiveRecorder/BililiveRecorder
录播姬 | mikufans 生放送录制
|
|
dotnet/interactive
.NET Interactive combines the power of .NET with many other languages to create notebooks, REPLs, and embedded coding experiences. Share code, explore data, write, and learn across your apps in ways you couldn't before.
|
|
roslynpad/roslynpad
A cross-platform C# editor based on Roslyn and AvalonEdit
|
Version | Downloads | Last updated |
---|---|---|
2.11.79 | 28,998 | 8/23/2024 |
2.11.74 | 133,562 | 5/6/2024 |
2.11.72 | 7,035 | 4/29/2024 |
2.10.72 | 86,471 | 10/3/2023 |
2.10.69 | 730,012 | 6/21/2023 |
2.10.66 | 116,828 | 6/7/2023 |
2.10.37-alpha | 705 | 1/10/2023 |
2.10.22-alpha | 287 | 12/21/2022 |
2.9.116 | 2,756 | 6/7/2023 |
2.9.112 | 573,875 | 9/28/2022 |
2.9.109 | 165,961 | 9/26/2022 |
2.9.91-alpha | 1,358 | 7/22/2022 |
2.9.87-alpha | 36,080 | 7/2/2022 |
2.9.71-alpha | 359 | 6/1/2022 |
2.9.47-alpha | 963 | 1/20/2022 |
2.9.45-alpha | 758 | 1/11/2022 |
2.8.65 | 3,207 | 9/5/2022 |
2.8.61 | 172,669 | 7/2/2022 |
2.8.57 | 1,211,385 | 1/24/2022 |
2.8.54 | 98,590 | 11/18/2021 |
2.8.50 | 4,874 | 11/2/2021 |
2.8.46 | 53,791 | 7/29/2021 |
2.8.22-alpha | 730 | 5/20/2021 |
2.7.74 | 74,072 | 4/26/2021 |
2.7.62-alpha | 391 | 3/30/2021 |
2.6.81 | 2,375,895 | 10/2/2020 |
2.6.78 | 12,033 | 9/21/2020 |
2.6.77 | 220,500 | 9/19/2020 |
2.6.37-alpha | 10,126 | 7/30/2020 |
2.5.76 | 221,022 | 7/30/2020 |
2.5.72 | 2,703 | 7/21/2020 |
2.5.70 | 33,794 | 7/14/2020 |
2.5.65 | 4,535 | 7/9/2020 |
2.5.60 | 7,392 | 5/9/2020 |
2.5.58 | 45,319 | 5/8/2020 |
2.5.57-alpha | 685 | 4/24/2020 |
2.5.50-alpha | 1,083 | 3/26/2020 |
2.5.19-alpha | 648 | 12/9/2019 |
2.4.73 | 148,375 | 4/24/2020 |
2.4.67 | 1,467 | 4/15/2020 |
2.4.60 | 225,001 | 2/24/2020 |
2.4.59 | 1,185 | 2/16/2020 |
2.4.57 | 124,937 | 2/9/2020 |
2.4.50 | 5,347 | 12/9/2019 |
2.4.48 | 11,680 | 11/16/2019 |
2.4.46 | 100,294 | 11/6/2019 |
2.4.37 | 2,970 | 10/3/2019 |
2.4.32 | 206,464 | 10/2/2019 |
2.4.30-alpha | 538 | 9/26/2019 |
2.4.27-alpha | 555 | 9/23/2019 |
2.4.20-alpha | 541 | 9/22/2019 |
2.4.12-alpha | 1,912 | 9/21/2019 |
2.3.32 | 48,379 | 9/7/2019 |
2.3.30 | 737 | 9/7/2019 |
2.3.26 | 130,172 | 8/2/2019 |
2.3.25-alpha | 3,274 | 7/31/2019 |
2.3.23-alpha | 595 | 7/31/2019 |
2.3.21-alpha | 557 | 7/31/2019 |
2.3.18-alpha | 578 | 7/29/2019 |
2.2.43 | 2,431 | 7/31/2019 |
2.2.42 | 1,345 | 7/16/2019 |
2.2.38 | 3,726 | 7/7/2019 |
2.2.26 | 79,385 | 6/2/2019 |
2.2.24-rc | 589 | 6/2/2019 |
2.2.5-alpha | 628 | 5/20/2019 |
2.1.37 | 305,804 | 3/29/2019 |
2.1.28-beta | 13,965 | 3/21/2019 |
2.1.23-beta | 543 | 3/18/2019 |
2.1.11-alpha | 732 | 3/10/2019 |
2.1.9-alpha | 544 | 3/9/2019 |
2.1.6-alpha | 578 | 3/8/2019 |
2.1.4-alpha | 582 | 3/7/2019 |
2.1.2-alpha | 982 | 2/12/2019 |
2.0.228 | 993 | 3/21/2019 |
2.0.225 | 4,203 | 3/9/2019 |
2.0.214 | 23,917 | 1/27/2019 |
2.0.206 | 28,809 | 12/15/2018 |
2.0.202-rc | 672 | 12/14/2018 |
2.0.198-beta | 86,558 | 11/28/2018 |
2.0.188-beta | 22,289 | 9/25/2018 |
2.0.165-beta | 974 | 9/15/2018 |
2.0.163-beta | 767 | 9/9/2018 |
2.0.152-beta | 722 | 9/1/2018 |
2.0.112-rc | 1,673 | 8/26/2018 |
2.0.95-beta | 787 | 8/17/2018 |
2.0.91-beta | 786 | 8/16/2018 |
2.0.83-beta | 801 | 8/10/2018 |
2.0.67-beta | 780 | 8/3/2018 |
2.0.61-beta | 771 | 7/24/2018 |
2.0.54-beta | 828 | 7/23/2018 |
2.0.20-beta | 895 | 7/13/2018 |
2.0.2-beta | 880 | 7/9/2018 |