如何在 C# App 中从 lDAP 服务器获取 CLR 文件?java中的相同代码是这样的://创建LDAP URL
String urlStr = "ldap://ldap.signatur.rtr.at/CN=Telekom-Control-"+
"Kommission%20Top%201,O=Telekom-Control-Kommission,"+
"C=AT?caCertificate;binary";
URL url = new URL(urlStr);
// open connection
URLConnection con = url.openConnection();
// get a stream and read the certificate
InputStream is = con.getInputStream();
X509Certificate cert = new X509Certificate(is);