9 lines
204 B
C#
9 lines
204 B
C#
using System.Net;
|
|
|
|
namespace VRCAuthProxy;
|
|
|
|
class HttpClientCookieContainer(HttpClientHandler handler) : HttpClient(handler)
|
|
{
|
|
|
|
public CookieContainer CookieContainer => handler.CookieContainer;
|
|
}
|