以下內容的建議,我在幾個網頁上看到(例如Using CookieContainer with WebClient class),我的子類WebClient類使用與它的cookie:Silverlight 4中,繼承WebClient的
public class MyWebClient : System.Net.WebClient
{
}
現在,當我初始化MyWebClient:
MyWebClient wc = new MyWebClient();
它拋出TypeLoadException。我的操作系統是Windows 7(日語),所以錯誤信息不是英文;我看到它與安全規則有關。可能是什麼問題?
而不是繼承你應該使用組合 – Denis