Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 10 additions & 0 deletions fern/products/sdks/overview/csharp/changelog/2026-03-20.mdx
Original file line number Diff line number Diff line change
@@ -1,3 +1,13 @@
## 2.44.0
**`(feat):`** Add queued sending via `Channel<T>` to the WebSocket connection layer. Two
unbounded channels (text and binary) are drained by dedicated background tasks
started alongside the connection. The non-blocking `Send(string)` and `Send(byte[])`
methods return `bool` indicating whether the message was queued, while the existing
`SendInstant` async-per-send path remains unchanged. Queues are completed in `Dispose`
before cancellation tokens are signalled. Drain loop errors are surfaced through the
`ExceptionOccurred` event.


## 2.43.0
**`(feat):`** Add per-message deflate compression support (RFC 7692) for WebSocket connections.
A new `EnableCompression` option on the generated WebSocket Options class enables
Expand Down
Loading