获取System.ArgumentException - 对异步apis中的事件TaskScheduled使用未定义的关键字值1。
在使用Visual Studio 2013 Update 3的通用应用程序中运行第一个await语句时出错。
安装Visual Studio 2013 Update 3后,我正在使用WP8.1 Universal和silverlight应用程序。
仿真器/设备模式中发生异常。我花了几天时间研究这个问题而没有任何解决方案。
我在Windows开发中心论坛上有一篇兄弟文章,但我没有听到微软的任何答案。
代码很简单。抛出内部异常后,await永远不会返回。
其他人是否有异步问题?决议?
public async Task<StorageFolder> FolderExists(StorageFolder parent, string folderName)
{
StorageFolder result = null;
try
{
// Exception happens here. The code never returns so the thread hangs
result = await parent.GetFolderAsync(folderName);
}
catch (Exception ex)
{
if (FeishLogger.Logger.IsDebug)
ex.LogException(() => string.Format("FolderExists File: {0}\\{1}", parent.Path, folderName));
}
return result;
}
完全例外:
System.ArgumentException occurred
_HResult=-2147024809
_message=Use of undefined keyword value 1 for event TaskScheduled.
HResult=-2147024809
IsTransient=false
Message=Use of undefined keyword value 1 for event TaskScheduled.
Source=mscorlib
StackTrace:
at System.Diagnostics.Tracing.ManifestBuilder.GetKeywords(UInt64 keywords, String eventName)
InnerException:
我有一个示例项目。创建一个shell Universal App并添加一些await语句会使问题重新出现。
private async Task AsyncMethod()
{
Debug.WriteLine("({0:0000} - Sync Debug)", Environment.CurrentManagedThreadId);
// Uncomment this line to make it work
//await Task.Delay(1);
// Fails only if the line above is commented
await Task.Run(() => Debug.WriteLine("({0:0000} - Async Debug)", Environment.CurrentManagedThreadId));
}
这是完整的OnLaunched代码,调用AsyncMethod
protected override async void OnLaunched(LaunchActivatedEventArgs e)
{
#if DEBUG
if (System.Diagnostics.Debugger.IsAttached)
{
this.DebugSettings.EnableFrameRateCounter = true;
}
#endif
Frame rootFrame = Window.Current.Content as Frame;
// Do not repeat app initialization when the Window already has content,
// just ensure that the window is active
if (rootFrame == null)
{
// Create a Frame to act as the navigation context and navigate to the first page
rootFrame = new Frame();
// TODO: change this value to a cache size that is appropriate for your application
rootFrame.CacheSize = 1;
if (e.PreviousExecutionState == ApplicationExecutionState.Terminated)
{
// TODO: Load state from previously suspended application
}
// Place the frame in the current Window
Window.Current.Content = rootFrame;
}
if (rootFrame.Content == null)
{
#if WINDOWS_PHONE_APP
// Removes the turnstile navigation for startup.
if (rootFrame.ContentTransitions != null)
{
this.transitions = new TransitionCollection();
foreach (var c in rootFrame.ContentTransitions)
{
this.transitions.Add(c);
}
}
rootFrame.ContentTransitions = null;
rootFrame.Navigated += this.RootFrame_FirstNavigated;
#endif
await AsyncMethod();
await AsyncMethods();
await AsyncMethods();
await AsyncMethods();
// When the navigation stack isn't restored navigate to the first page,
// configuring the new page by passing required information as a navigation
// parameter
if (!rootFrame.Navigate(typeof(MainPage), e.Arguments))
{
throw new Exception("Failed to create initial page");
}
}
// Ensure the current window is active
Window.Current.Activate();
}
答案 0 :(得分:5)
可以忽略该异常。只是打了一下。或者,您可以在调试中禁用中断中断 - &gt;例外菜单。
答案 1 :(得分:1)
这个问题仍然存在,其他答案说,例外本身可以被忽略。但是如果异步操作被try / catch包围,则会捕获异常,并且不会执行同一个try / catch括号中的其他操作,这就是问题所在。
在异步操作之前放置这个会更好。
try
{
await Task.Delay(1);
}
catch
{
// do nothing
}
在Task.Delay(1)上仍然会发生异常,但之后不会发生以下异步操作。
答案 2 :(得分:0)
我通过添加
解决了这个问题using System.Runtime.InteropServices.WindowsRuntime;
请勿删除此行。自动“排序和删除使用”将(在我的情况下)删除它,导致这个神秘的问题。不,我不知道为什么。但我知道这是原因。