我仍在学习用 C# 编程并在办公室从事一个项目
public static void SetIdentity(string subId)
{
if (Proxy.ClientCredentials != null)
{
Proxy.ClientCredentials.UserName.UserName = subId;//
Proxy.ClientCredentials.UserName.Password = subId;
}
ServicePointManager.ServerCertificateValidationCallback += new System.Net.Security.RemoteCertificateValidationCallback(customXertificateation);
}
这是我得到这个异常的地方:NullReferenceException was unhandled by user code
有人可以看看并建议我这里有什么问题吗?