MET08AFMD3100 - v2.47.0 - Changed

GaN Map Drives to false
This commit is contained in:
2022-11-22 12:27:20 -07:00
parent 7f6dce34a4
commit 5ff549b734
28 changed files with 958 additions and 387 deletions

View File

@ -0,0 +1,20 @@
using System;
using System.Net;
namespace Infineon.Monitoring.MonA;
#nullable disable
#pragma warning disable SYSLIB0014
public class ExtWebClient : WebClient
{
protected override WebRequest GetWebRequest(Uri address)
{
WebRequest webRequest = base.GetWebRequest(address);
if (webRequest != null)
webRequest.PreAuthenticate = PreAuthenticate;
return webRequest;
}
public bool PreAuthenticate { get; set; }
}