DEP08SIASM - v2.43.4 - Change to MonA

This commit is contained in:
2022-09-14 10:15:16 -07:00
parent 1a152fafe0
commit a3d769222a
39 changed files with 1116 additions and 214 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; }
}