Horje
web client ignore ssl error Code Example
web client ignore ssl error
ServicePointManager.ServerCertificateValidationCallback = (sender, cert, chain, errors) => true;

ServicePointManager.ServerCertificateValidationCallback = delegate(object sender, X509Certificate certificate, X509Chain chain, SslPolicyErrors errors) { return true; };

// 255 characters - lots of code!
ServicePointManager.ServerCertificateValidationCallback =
    new RemoteCertificateValidationCallback(
        delegate(object sender, X509Certificate certificate, X509Chain chain, SslPolicyErrors errors)
        {
            return true;
        });




Csharp

Related
vb.net delete folder if exists Code Example vb.net delete folder if exists Code Example
listbox items to string c# Code Example listbox items to string c# Code Example
c# ip address to string Code Example c# ip address to string Code Example
c# print decimal with zero at the end Code Example c# print decimal with zero at the end Code Example
freeze scene unity Code Example freeze scene unity Code Example

Type:
Code Example
Category:
Coding
Sub Category:
Code Example
Uploaded by:
Admin
Views:
11