mirror of
https://e.coding.net/circlecloud/CTZLauncher.git
synced 2024-11-14 00:48:48 +00:00
修复HttpHelper...
This commit is contained in:
parent
757daff238
commit
40549f65af
@ -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>
|
||||
|
@ -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;
|
||||
|
Loading…
Reference in New Issue
Block a user