public IEnumerable <ExternalInstance> GetInstances(Application app) { checkLoginStatus(); var info = new InfoHelper(credMgr); return(info.GetInstances(app)); }
public IEnumerable <StatInfo> GetStats(Application app) { checkLoginStatus(); var info = new InfoHelper(credMgr); return(info.GetStats(app)); }
public string GetLogs(Application app, ushort instanceNumber) { checkLoginStatus(); var info = new InfoHelper(credMgr); return(info.GetLogs(app, instanceNumber)); }
public IEnumerable<StatInfo> GetStats(Application app) { CheckLoginStatus(); var info = new InfoHelper(proxyUser, credMgr); return info.GetStats(app); }
public string GetLogs(Application app, ushort instanceNumber) { CheckLoginStatus(); var info = new InfoHelper(proxyUser, credMgr); return info.GetLogs(app, instanceNumber); }
public IEnumerable<ExternalInstance> GetInstances(Application app) { CheckLoginStatus(); var info = new InfoHelper(proxyUser, credMgr); return info.GetInstances(app); }
public IEnumerable <ExternalInstance> GetInstances(Application app) { var info = new InfoHelper(proxyUser, credMgr); return(info.GetInstances(app)); }
public IEnumerable <StatInfo> GetStats(Application app) { var info = new InfoHelper(proxyUser, credMgr); return(info.GetStats(app)); }
public string GetLogs(Application app, ushort instanceNumber) { var info = new InfoHelper(proxyUser, credMgr); return(info.GetLogs(app, instanceNumber)); }