Trying to identify unkown code we have to work on?
This question may seem a bit dumb, but I am learning new code everyday like most of us. I have a brief pseudo code a company provided with little to no support we are working on a citation program. what language utilizes "xmlResult" and
System.Net.ServicePointManager.ServerCertificateValidationCallback
= n开发者_JAVA百科ew RemoteCertificateValidationCallback(RemoteCertificateValidationCallback);
Thank You
Lots of languages support those calls. They are both supported in .net, which means the implementations could be in a few different languages. Complete and total guess, but likely C#. Pseudocode is just that, code that isn't written in a particular language yet, but gets the idea across of what is being done.
Here is the MSDN article on ServicePointManager.Server.CertificateValidationCallback
精彩评论