feat: support websockets

This commit is contained in:
Lillith Fox 2024-12-22 19:22:15 -05:00
parent 5e19348a11
commit 255b273f65
2 changed files with 77 additions and 3 deletions

View file

@ -0,0 +1,9 @@
using System.Net;
namespace VRCAuthProxy;
class HttpClientCookieContainer(HttpClientHandler handler) : HttpClient(handler)
{
public CookieContainer CookieContainer => handler.CookieContainer;
}