Example #1
0
 public void GetApplicationUsers()
 {
     using (var client = new CustomHttpClient("http://localhost:3314/api"))
     {
         client.LoginWindows();
         var users = client.LoadAsync<ApplicationUser>();
         Assert.IsTrue(users.Wait(5000));
     }
 }