Exemple #1
0
        public Task<VersionLoginClient> GetWithCachedVersionAsync(LoginClient client)
        {
            if (this._version == null)
            {
                return client.WithAutomaticVersionAsync().Then(task =>
                {
                    this._version = task.Result.Version;
                    return task;
                }).ToSafeTask();
            }

            var tcs = new TaskCompletionSource<VersionLoginClient>();
            tcs.SetResult(client.WithVersion(this._version.Value));
            return tcs.Task;
        }
Exemple #2
0
 public VersionLoginClient GetWithCachedVersion(LoginClient client)
 {
     return(this.GetWithCachedVersionAsync(client).GetResultEx());
 }
Exemple #3
0
 public VersionLoginClient GetWithCachedVersion(LoginClient client)
 {
     return this.GetWithCachedVersionAsync(client).GetResultEx();
 }
 internal VersionLoginClient(LoginClient loginClient, int version)
 {
     this._loginClient = loginClient;
     this.Version      = version;
 }