私はまだ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
誰かが見て、ここで何が間違っているのか教えてもらえますか?