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