예제 #1
0
 public void Stop_App_As_User()
 {
     IVcapClient client = new VcapClient("http://api.ironfoundry.me");
     VcapClientResult rslt = client.Login("*****@*****.**", "password");
     Assert.True(rslt.Success);
     VcapUser user = client.GetUser("otheruser");
     client.ProxyAs(user);
     VcapClientResult stopRslt = client.Stop("appname");
 }