HTTP Debugger'in servisini sürekli stop edebilir veya httpdebuggersvc.exe açıksa işlemlerde kapattırarak yapabilirsiniz. Veya c# yada vb.net'e form load'a herşeyden önce sadece şu kodu koymanız ve bir timer'a eklemeniz yeterlidir. Veriler gizlenir ve http debugger açan birşey göremez.
Imports olarak System.Net veya System.Net.Http kütüphanesi gerekebilir.
VB.NET
Kod:
ServicePointManager.Expect100Continue = True
ServicePointManager.SecurityProtocol = SecurityProtocolType.Tls12
HttpWebRequest.DefaultWebProxy = New WebProxy()
C#
Kod:
ServicePointManager.Expect100Continue = true;
ServicePointManager.SecurityProtocol = SecurityProtocolType.Tls12;
HttpWebRequest.DefaultWebProxy = new WebProxy();