FtpWebRequest webReq;
webReq = (FtpWebRequest)FtpWebRequest.Create(new Uri(updateFileUrl));
FtpWebResponse res;
res = (FtpWebResponse)req.GetResponse();
出现“webReq.ContentType”引发了“System.NotSupportedException”类型的异常
“webReq.PreAuthenticate”引发了“System.NotSupportedException”类型的异常
“webReq.UseDefaultCredentials”引发了“System.NotSupportedException”类型的异常
“res.ContentType”引发了“System.NotSupportedException”类型的异常
“res.PreAuthenticate”引发了“System.NotSupportedException”类型的异常
“res.UseDefaultCredentials”引发了“System.NotSupportedException”类型的异常
导致的结果是res取不到值。这是什么原因引起的啊?该如何解决?