This commit is contained in:
Stef Heyenrath
2026-02-16 09:37:51 +01:00
parent f29a281b55
commit fa3a33dcc6
4 changed files with 141 additions and 224 deletions

View File

@@ -50,5 +50,20 @@ public enum BodyType
/// <summary>
/// Use Server-Sent Events (string)
/// </summary>
SseString
SseString,
/// <summary>
/// WebSocket message in clear text.
/// </summary>
WebSocketText,
/// <summary>
/// WebSocket message in binary format.
/// </summary>
WebSocketBinary,
/// <summary>
/// WebSocket close message.
/// </summary>
WebSocketClose
}