1
0
mirror of https://e.coding.net/circlecloud/CTZLauncher.git synced 2024-11-22 02:08:49 +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 class HttpHelper
{ {
public static HttpReadyState readyState = HttpReadyState.; public HttpReadyState readyState = HttpReadyState.;
public static int Status = 0; public int Status = 0;
public static string responseBody = ""; public string responseBody = "";
public static string responseText = ""; public string responseText = "";
public static byte[] responseByte = null; public byte[] responseByte = null;
public static HttpArgs args = new HttpArgs(); public HttpArgs args = new HttpArgs();
public static string ErrMsg = string.Empty; public string ErrMsg = string.Empty;
/// <summary> /// <summary>
/// 提交方法 /// 提交方法
/// </summary> /// </summary>

View File

@ -105,7 +105,8 @@ namespace CTZLauncher
{ {
HttpHelper http = new HttpHelper(); HttpHelper http = new HttpHelper();
http.Send(HttpMethod.GET, "http://127.0.0.1:2000/isregistered?username=" + username.Text); http.Send(HttpMethod.GET, "http://127.0.0.1:2000/isregistered?username=" + username.Text);
while(http.readyState!=HttpReadyState.){ while (http.readyState != HttpReadyState.)
{
DoEvent(); DoEvent();
} }
String result = http.responseBody; String result = http.responseBody;