本文整理汇总了C#中UIViewController.DoWork方法的典型用法代码示例。如果您正苦于以下问题:C# UIViewController.DoWork方法的具体用法?C# UIViewController.DoWork怎么用?C# UIViewController.DoWork使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类UIViewController
的用法示例。
在下文中一共展示了UIViewController.DoWork方法的1个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的C#代码示例。
示例1: LoginAccount
public static void LoginAccount(string user, string pass, UIViewController ctrl, Action<Exception> error = null)
{
//Does this user exist?
var account = Application.Accounts.Find(user);
var exists = account != null;
if (!exists)
account = new Account { Username = user, Password = pass };
ctrl.DoWork("Logging in...", () => {
BitbucketSharp.Models.UsersModel userInfo;
try
{
var client = new BitbucketSharp.Client(user, pass) { Timeout = 30 * 1000 };
userInfo = client.Account.GetInfo();
}
catch (Exception)
{
throw new Exception("Unable to login as user " + account.Username + ". Please check your credentials and try again. Remember, credentials are case sensitive!");
}
account.FullName = (userInfo.User.FirstName ?? string.Empty) + " " + (userInfo.User.LastName ?? string.Empty);
account.Username = userInfo.User.Username;
account.Password = pass;
account.AvatarUrl = userInfo.User.Avatar;
if (exists)
Application.Accounts.Update(account);
else
Application.Accounts.Insert(account);
Application.SetUser(account);
ctrl.InvokeOnMainThread(TransitionToSlideout);
}, (ex) => {
Console.WriteLine(ex.Message);
//If there is a login failure, unset the user
Application.SetUser(null);
//Show an alert and trigger the callback when the user dismisses it
Utilities.ShowAlert("Unable to Authenticate", ex.Message, () => {
if (error != null)
error(ex);
});
});
}