试图识别我们必须处理的未知代码?
这个问题可能看起来有点愚蠢,但我像我们大多数人一样每天都在学习新代码。我有一个简短的伪代码,是一家公司提供的,但我们正在开发一个引文程序,但几乎没有任何支持。什么语言使用“xmlResult”,
System.Net.ServicePointManager.ServerCertificateValidationCallback
= new RemoteCertificateValidationCallback(RemoteCertificateValidationCallback);
谢谢
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
= new RemoteCertificateValidationCallback(RemoteCertificateValidationCallback);
Thank You
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
许多语言都支持这些调用。它们都在 .net 中受支持,这意味着可以使用几种不同的语言来实现。完全猜测,但可能是 C#。伪代码就是这样的代码,它还不是用特定语言编写的,但可以了解正在做什么。
这是关于 ServicePointManager.Server.CertificateValidationCallback 的 MSDN 文章
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