Beispiel #1
0
 public string GetLogs(Application app, ushort instanceNumber)
 {
     checkLoginStatus();
     var info = new InfoHelper(credMgr);
     return info.GetLogs(app, instanceNumber);
 }
Beispiel #2
0
 public IEnumerable<StatInfo> GetStats(Application app)
 {
     checkLoginStatus();
     var info = new InfoHelper(credMgr);
     return info.GetStats(app);
 }
Beispiel #3
0
 public IEnumerable<ExternalInstance> GetInstances(Application app)
 {
     checkLoginStatus();
     var info = new InfoHelper(credMgr);
     return info.GetInstances(app);
 }