The Exception handing at the framework level in API has been
implemented in all the three API’s. please don’t use any try-catch block
inside the API methods until it’s needed specifically.
When Global
hander has been introduced to handle the exceptions. The framework will
automatically handle the exceptions.
To bypass the SSL certificate check for your local development environments, you can use this ServicePointManager.ServerCertificateValidationCallback += (sender, certificate, chain, sslPolicyErrors) => true;
Comments