Ejemplo n.º 1
0
        public VcapClientResult Update(string name, DirectoryInfo path)
        {
            checkLoginStatus();
            var hlpr = new AppsHelper(credMgr);

            return(hlpr.Update(name, path));
        }
Ejemplo n.º 2
0
 public VcapClientResult Update(string name, DirectoryInfo path)
 {
     CheckLoginStatus();
     var hlpr = new AppsHelper(proxyUser, credMgr);
     return hlpr.Update(name, path);
 }
Ejemplo n.º 3
0
        public void Update(string name, DirectoryInfo path)
        {
            var helper = new AppsHelper(proxyUser, credMgr);

            helper.Update(name, path);
        }
Ejemplo n.º 4
0
 public void Update(string name, DirectoryInfo path)
 {
     var helper = new AppsHelper(proxyUser, credMgr);
     helper.Update(name, path);
 }