![]() |
VOOZH | about |
dotnet add package System.Net.ServerSentEvents --version 10.0.9
NuGet\Install-Package System.Net.ServerSentEvents -Version 10.0.9
<PackageReference Include="System.Net.ServerSentEvents" Version="10.0.9" />
<PackageVersion Include="System.Net.ServerSentEvents" Version="10.0.9" />Directory.Packages.props
<PackageReference Include="System.Net.ServerSentEvents" />Project file
paket add System.Net.ServerSentEvents --version 10.0.9
#r "nuget: System.Net.ServerSentEvents, 10.0.9"
#:package System.Net.ServerSentEvents@10.0.9
#addin nuget:?package=System.Net.ServerSentEvents&version=10.0.9Install as a Cake Addin
#tool nuget:?package=System.Net.ServerSentEvents&version=10.0.9Install as a Cake Tool
System.Net.ServerSentEvents provides the SseParser type, which exposes factory methods for creating parsers for the events in a stream of server-sent events (SSE).
Asynchronously parsing event contents as strings
using HttpClient client = new();
using Stream stream = await client.GetStreamAsync("https://localhost:12345/sse");
await foreach (SseItem<string> item in SseParser.Create(stream).EnumerateAsync())
{
Console.WriteLine(item.Data);
}
Synchronously parsing event contents as JSON
MemoryStream stream = new(data);
foreach (SseItem<Book> item in SseParser.Create(stream, (eventType, bytes) => JsonSerializer.Deserialize<Book>(bytes)).Enumerate())
{
Console.WriteLine(item.Data.Author);
}
The main types provided by this library are:
System.Net.ServerSentEvents.SseParserSystem.Net.ServerSentEvents.SseParser<T>System.Net.ServerSentEvents.SseItem<T>System.Net.ServerSentEvents is released as open source under the MIT license. Bug reports and contributions are welcome at the GitHub repository.
| Product | Versions Compatible and additional computed target framework versions. |
|---|---|
| .NET | net5.0 net5.0 was computed. net5.0-windows net5.0-windows was computed. net6.0 net6.0 was computed. net6.0-android net6.0-android was computed. net6.0-ios net6.0-ios was computed. net6.0-maccatalyst net6.0-maccatalyst was computed. net6.0-macos net6.0-macos was computed. net6.0-tvos net6.0-tvos was computed. net6.0-windows net6.0-windows was computed. net7.0 net7.0 was computed. net7.0-android net7.0-android was computed. net7.0-ios net7.0-ios was computed. net7.0-maccatalyst net7.0-maccatalyst was computed. net7.0-macos net7.0-macos was computed. net7.0-tvos net7.0-tvos was computed. net7.0-windows net7.0-windows was computed. net8.0 net8.0 is compatible. net8.0-android net8.0-android was computed. net8.0-browser net8.0-browser was computed. net8.0-ios net8.0-ios was computed. net8.0-maccatalyst net8.0-maccatalyst was computed. net8.0-macos net8.0-macos was computed. net8.0-tvos net8.0-tvos was computed. net8.0-windows net8.0-windows was computed. net9.0 net9.0 is compatible. net9.0-android net9.0-android was computed. net9.0-browser net9.0-browser was computed. net9.0-ios net9.0-ios was computed. net9.0-maccatalyst net9.0-maccatalyst was computed. net9.0-macos net9.0-macos was computed. net9.0-tvos net9.0-tvos was computed. net9.0-windows net9.0-windows was computed. net10.0 net10.0 is compatible. net10.0-android net10.0-android was computed. net10.0-browser net10.0-browser was computed. net10.0-ios net10.0-ios was computed. net10.0-maccatalyst net10.0-maccatalyst was computed. net10.0-macos net10.0-macos was computed. net10.0-tvos net10.0-tvos was computed. net10.0-windows net10.0-windows was computed. |
| .NET Core | netcoreapp2.0 netcoreapp2.0 was computed. netcoreapp2.1 netcoreapp2.1 was computed. netcoreapp2.2 netcoreapp2.2 was computed. netcoreapp3.0 netcoreapp3.0 was computed. netcoreapp3.1 netcoreapp3.1 was computed. |
| .NET Standard | netstandard2.0 netstandard2.0 is compatible. netstandard2.1 netstandard2.1 was computed. |
| .NET Framework | net461 net461 was computed. net462 net462 is compatible. net463 net463 was computed. net47 net47 was computed. net471 net471 was computed. net472 net472 was computed. net48 net48 was computed. net481 net481 was computed. |
| MonoAndroid | monoandroid monoandroid was computed. |
| MonoMac | monomac monomac was computed. |
| MonoTouch | monotouch monotouch was computed. |
| Tizen | tizen40 tizen40 was computed. tizen60 tizen60 was computed. |
| Xamarin.iOS | xamarinios xamarinios was computed. |
| Xamarin.Mac | xamarinmac xamarinmac was computed. |
| Xamarin.TVOS | xamarintvos xamarintvos was computed. |
| Xamarin.WatchOS | xamarinwatchos xamarinwatchos was computed. |
Showing the top 5 NuGet packages that depend on System.Net.ServerSentEvents:
| Package | Downloads |
|---|---|
|
Microsoft.AspNetCore.Http.Connections.Client
Client for ASP.NET Core Connection Handlers This package was built from the source code at https://github.com/dotnet/dotnet/tree/f7b4c5716faaee8fb8a289aed29118cad955c45f |
|
|
OpenAI
The official .NET library for the OpenAI service API. |
|
|
Auth0.ManagementApi
Package Description |
|
|
ModelContextProtocol.Core
Core .NET SDK for the Model Context Protocol (MCP) |
|
|
HotChocolate.Transport.Http
This package contains a graphql over http client. |
Showing the top 12 popular GitHub repositories that depend on System.Net.ServerSentEvents:
| Repository | Stars |
|---|---|
|
Azure/azure-sdk-for-net
This repository is for active development of the Azure SDK for .NET. For consumers of the SDK we recommend visiting our public developer docs at https://learn.microsoft.com/dotnet/azure/ or our versioned developer docs at https://azure.github.io/azure-sdk-for-net.
|
|
|
modelcontextprotocol/csharp-sdk
The official C# SDK for Model Context Protocol servers and clients. Maintained in collaboration with Microsoft.
|
|
|
openai/openai-dotnet
The official .NET library for the OpenAI API
|
|
|
dapr/dotnet-sdk
Dapr SDK for .NET
|
|
|
auth0/auth0.net
.NET client for the Auth0 Authentication & Management APIs.
|
|
|
axzxs2001/Asp.NetCoreExperiment
原来所有项目都移动到**OleVersion**目录下进行保留。新的案例装以.net 5.0为主,一部分对以前案例进行升级,一部分将以前的工作经验总结出来,以供大家参考!
|
|
|
anthropics/anthropic-sdk-csharp
Access to Anthropic's safety-first language model APIs in C#
|
|
|
a2aproject/a2a-dotnet
C#/.NET SDK for A2A Protocol
|
|
|
PederHP/mcpdotnet
.NET implementation of the Model Context Protocol (MCP)
|
|
|
lindexi/lindexi_gd
博客用到的代码
|
|
|
microsoft/Agents-for-net
This repository is for active development of the Microsoft 365 Agent SDK components for .NET
|
|
|
notargs/UnityNaturalMCP
UnityNaturalMCP is an MCP server implementation for Unity that aims for a "natural" user experience.
|
| Version | Downloads | Last Updated |
|---|---|---|
| 11.0.0-preview.5.26302.115 | 234 | 6/9/2026 |
| 11.0.0-preview.4.26230.115 | 676 | 5/12/2026 |
| 11.0.0-preview.3.26207.106 | 850 | 4/14/2026 |
| 11.0.0-preview.2.26159.112 | 777 | 3/10/2026 |
| 11.0.0-preview.1.26104.118 | 922 | 2/10/2026 |
| 10.0.9 | 17,281 | 6/9/2026 |
| 10.0.8 | 71,560 | 5/12/2026 |
| 10.0.7 | 282,775 | 4/21/2026 |
| 10.0.6 | 59,627 | 4/14/2026 |
| 10.0.5 | 680,360 | 3/12/2026 |
| 10.0.4 | 120,058 | 3/10/2026 |
| 10.0.3 | 1,034,876 | 2/10/2026 |
| 10.0.2 | 1,269,913 | 1/13/2026 |
| 10.0.1 | 708,258 | 12/9/2025 |
| 9.0.17 | 7,396 | 6/9/2026 |
| 9.0.16 | 34,646 | 5/12/2026 |
| 9.0.15 | 147,336 | 4/14/2026 |
| 9.0.14 | 135,511 | 3/10/2026 |
| 9.0.13 | 90,509 | 2/10/2026 |
| 9.0.12 | 84,082 | 1/13/2026 |