这是我现在拥有的功能,显然不起作用。它不起作用的原因是因为WebClient是异步的,data
在WebClient填充并且在XML阅读器上崩溃之前是空的。如何在此函数中调用WebClient并仍允许它在需要或不需要外部事件处理程序时根据需要返回ServerResult
?
static public ServerResult isBarcodeCorrectOnServer(string barcode)
{
Dictionary<string, IPropertyListItem> dict = configDictionary();
string urlString = (string.Format("http://www.myurl.com/app/getbarcodetype.php?realbarcode={0}&type={1}", barcode, dict["type"]));
WebClient wc = new WebClient();
string data = "";
wc.DownloadStringCompleted += (sender, e) =>
{
if (e.Error == null)
{
//Process the result...
data = e.Result;
}
};
wc.DownloadStringAsync(new Uri(urlString));
StringReader stream = new StringReader(data);
var reader = XmlReader.Create(stream);
var document = XDocument.Load(reader);
var username = document.Descendants("item");
var theDict = username.Elements().ToDictionary(ev => ev.Name.LocalName, ev => ev.Value);
if (theDict.ContainsKey("type") == true && theDict["type"].ToString() == dict["type"].ToString())
{
return ServerResult.kOnServer;
}
else if (theDict.ContainsKey("type") == true)
{
return ServerResult.kWrongType;
}
else
{
return ServerResult.kNotOnServer;
}
}
答案 0 :(得分:5)
你不能没有“黑客”,你不应该 - 拥抱异步并传入一个你希望在下载完成后执行的委托:
static public void isBarcodeCorrectOnServer(string barcode, Action<string> completed)
{
//..
wc.DownloadStringCompleted += (sender, e) =>
{
if (e.Error == null)
{
//Process the result...
data = e.Result;
completed(data);
}
};
//..
}
您现在可以将所有处理代码移动到您使用下载结果调用的单独方法中。
答案 1 :(得分:0)
从根本上说,您应该设计代码以使用该平台。接受它将异步,并使调用代码处理它。
请注意,当C#5出现以及Windows Phone支持时,所有这些都将使用async
更简单 lot 。您将从方法中返回Task<ServerResult>
,并await
返回WebClient
的结果。如果你只是为了娱乐而开发(所以不要介意使用有一些错误的CTP,并且可能无法为市场应用程序发布),你可以do that today。