Rocket.Chat.Net.Driver.RocketChatDriver.SetDriverUserInfoAsync C# (CSharp) Method

SetDriverUserInfoAsync() private method

private SetDriverUserInfoAsync ( string userId ) : Task
userId string
return 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;
        }