Rocket.Chat.Net.Driver.RocketChatDriver.SetDriverUserInfoAsync C# (CSharp) Méthode

SetDriverUserInfoAsync() private méthode

private SetDriverUserInfoAsync ( string userId ) : Task
userId string
Résultat Task
        private async Task SetDriverUserInfoAsync(string userId)
        {
            UserId = userId;
            var collection = await _collectionDatabase.WaitForObjectInCollectionAsync("users", userId, TimeoutToken).ConfigureAwait(false);
            var user = collection.GetById<FullUser>(userId);
            Username = user?.Username;
        }