我在visual studio 2013 for Windows 8.1上开发了一个应用程序。我有%URL要为其创建实时图块。在app.xaml.cs中有o函数,您可以在其中定义轮询URL,但我不知道如何做到这一点。有人可以帮我吗? 提前致谢。 设置投票网址的代码如下所示
public static void SetPollUrls(params string[] _pollUrls)
{
urisToPoll = new List<Uri>();
foreach(string url in _pollUrls)
{
if (string.IsNullOrEmpty(url))
continue;
try
{
urisToPoll.Add(new Uri(url));
}
catch (Exception)
{
// The URLs need to be well formed.
}
}
}