feat: support websockets
This commit is contained in:
parent
5e19348a11
commit
255b273f65
2 changed files with 77 additions and 3 deletions
9
VRCAuthProxy/HttpClientCookieContainer.cs
Normal file
9
VRCAuthProxy/HttpClientCookieContainer.cs
Normal file
|
|
@ -0,0 +1,9 @@
|
|||
using System.Net;
|
||||
|
||||
namespace VRCAuthProxy;
|
||||
|
||||
class HttpClientCookieContainer(HttpClientHandler handler) : HttpClient(handler)
|
||||
{
|
||||
|
||||
public CookieContainer CookieContainer => handler.CookieContainer;
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue