我在此功能上收到错误
private void Login_Click(object sender, RoutedEventArgs e)
{
var auth0 = new Auth0Client("sample.auth0.com", "iRyFSIfQaeG4KXKd36D3CEPxkPyJ0Ekk");
auth0.LoginAsync(new WindowWrapper(new WindowInteropHelper(this).Handle))
.ContinueWith(
t => { this.textBox1.Text = t.Result.Profile.ToString(); },
TaskScheduler.FromCurrentSynchronizationContext());
}
错误讯息:
任务不包含结果的定义,也没有扩展方法 接受结果接受类型任务的第一个参数可以找到。
错误在t.Result.Profile.ToString()
我对Task Concept还不熟悉。请帮忙!