1
0
mirror of https://e.coding.net/circlecloud/CTZLauncher.git synced 2024-11-14 00:48:48 +00:00

修复HttpHelper...

This commit is contained in:
j502647092 2015-07-30 20:49:09 +08:00
parent 757daff238
commit 40549f65af
2 changed files with 11 additions and 10 deletions

View File

@ -42,13 +42,13 @@ namespace CityCraft
}
public class HttpHelper
{
public static HttpReadyState readyState = HttpReadyState.;
public static int Status = 0;
public static string responseBody = "";
public static string responseText = "";
public static byte[] responseByte = null;
public static HttpArgs args = new HttpArgs();
public static string ErrMsg = string.Empty;
public HttpReadyState readyState = HttpReadyState.;
public int Status = 0;
public string responseBody = "";
public string responseText = "";
public byte[] responseByte = null;
public HttpArgs args = new HttpArgs();
public string ErrMsg = string.Empty;
/// <summary>
/// 提交方法
/// </summary>

View File

@ -104,8 +104,9 @@ namespace CTZLauncher
private void Login_Click(object sender, RoutedEventArgs e)
{
HttpHelper http = new HttpHelper();
http.Send(HttpMethod.GET,"http://127.0.0.1:2000/isregistered?username=" + username.Text);
while(http.readyState!=HttpReadyState.){
http.Send(HttpMethod.GET, "http://127.0.0.1:2000/isregistered?username=" + username.Text);
while (http.readyState != HttpReadyState.)
{
DoEvent();
}
String result = http.responseBody;
@ -159,7 +160,7 @@ namespace CTZLauncher
private void maxmem_TextChanged(object sender, TextChangedEventArgs e)
{
//屏蔽中文输入和非法字符粘贴输入
TextBox textBox = sender as TextBox;
TextChange[] change = new TextChange[e.Changes.Count];