using System; using System.Collections.Generic; using System.IO; using System.Linq; using System.Net; using System.Text; using System.Threading.Tasks; using System.Windows.Forms; namespace MSGer.tk { static class Program { /// /// The main entry point for the application. /// public static MainForm MainF; [STAThread] static void Main() { Application.EnableVisualStyles(); Application.SetCompatibleTextRenderingDefault(false); try { Application.Run(MainF = new MainForm()); } catch(FileNotFoundException e) { //MessageBox.Show(e.GetType().ToString()); MessageBox.Show("Egy fájl nem található.\nA fájl neve:\n" + e.FileName+"\nEnnél a műveletnél: "+e.TargetSite); } catch(Exception e) { ErrorHandling.FormError(MainF, e); } } } static class Networking { public static string SendRequest(string action, string data, int remnum, bool loggedin) //2014.02.18. { HttpWebRequest httpWReq = (HttpWebRequest)WebRequest.Create("http://msger.tk/client.php"); ASCIIEncoding encoding = new ASCIIEncoding(); string postData = "action=" + action; if (loggedin) //2014.03.14. postData += "&uid=" + CurrentUser.UserID; postData += "&key=cas1fe4a6feFEFEFE1616CE8099VFE1444cdasf48c1ase5dg"; if (loggedin) //2014.03.14. postData += "&code=" + LoginForm.UserCode; //2014.02.13. postData += "&data=" + Uri.EscapeUriString(data); //2014.02.13. byte[] datax = encoding.GetBytes(postData); httpWReq.Method = "POST"; httpWReq.ContentType = "application/x-www-form-urlencoded"; httpWReq.ContentLength = datax.Length; using (Stream stream = httpWReq.GetRequestStream()) { stream.Write(datax, 0, datax.Length); } //Lista betöltése folyamatban... HttpWebResponse response = (HttpWebResponse)httpWReq.GetResponse(); string responseString = new StreamReader(response.GetResponseStream()).ReadToEnd(); try { responseString = responseString.Remove(responseString.IndexOf('<')); } catch { } if (remnum>0 && responseString.Length-remnum>0) //Felt. 2014.03.14. responseString = responseString.Remove(responseString.Length - remnum); //A -1 nem elég return responseString; } } }