/// <summary>
 /// Gets all the connected user list.
 /// </summary>
 /// <returns>The collection of online users.</returns>
 public async Task <IEnumerable <UserInformation> > GetOnlineUsersAsync()
 {
     return(await userTracker.GetAllOnlineUsersAsync());
 }