当前位置: 首页>>代码示例>>C#>>正文


C# UIViewController.DoWork方法代码示例

本文整理汇总了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);
                });
            });
        }
开发者ID:steffen-avemarg,项目名称:CodeBucket,代码行数:47,代码来源:Login.cs


注:本文中的UIViewController.DoWork方法示例由纯净天空整理自Github/MSDocs等开源代码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。