@DIV
String url = "http://localhost/kouki_kadai/server.php?type=one&id=0005";
try
{
HttpClient httpClient = new HttpClient();
httpClient.MaxResponseContentBufferSize = int.MaxValue;
httpClient.DefaultRequestHeaders.ExpectContinue = false;
HttpResponseMessage response = await httpClient.GetAsync(url);
String text = await response.Content.ReadAsStringAsync();
Debug.WriteLine(text);
}
catch (Exception Err)
{
Debug.WriteLine(Err.Message);
}
@END |