禁用Proxy导致IOS上无法运行

你好,
我正在使用C# MAUI开发IOS端项目,在使用C#库时发现默认禁用了Http的Proxy,因为IOS强制要求开启proxy,这个定义直接导致C#库没办法再ios端上使用。如果不禁用proxy没有影响的话可以不定义这个部分

Authing.CSharp.SDK/UtilsImpl/HttpClientService.cs
static HttpClientService()
{
ServicePointManager.DefaultConnectionLimit = 1024;
m_HttpClient = new HttpClient(new HttpClientHandler()
{
Proxy = null,
UseProxy = false,
#if NETSTANDARD2_0
ServerCertificateCustomValidationCallback = delegate { return true; }
#endif
});
}