Exemple #1
0
 private bool CheckGameServer()
 {
     if (httpGet.Contains("sid"))
     {
         string[] array = httpGet.GetString("sid").Split('|');
         if (array.Length > 2)
         {
             string sid = array[0];
             GameId   = array[1].ToInt();
             ServerId = array[2].ToInt();
             return(true);
         }
     }
     return(false);
 }