使用 BeginGetRequestStream 方法对流实例发出异步请求

using System;
using System.Net;
using System.IO;
using System.Text; using System.Threading;

class HttpWebRequestBeginGetRequest
{
   
public static ManualResetEvent allDone = new ManualResetEvent( false );
   
public static void Main()
    {
       

           
// Create a new HttpWebRequest object.
            HttpWebRequest request = (HttpWebRequest) WebRequest.Create( " http://www.contoso.com/example.aspx " );   
   
           
// Set the ContentType property.
            request.ContentType = " application/x-www-form-urlencoded " ;
           
// Set the Method property to 'POST' to post data to the URI.
            request.Method = " POST " ;
           
// Start the asynchronous operation.   
            request.BeginGetRequestStream( new AsyncCallback(ReadCallback), request);   
           
           
// Keep the main thread from continuing while the asynchronous
           
// operation completes. A real world application
           
// could do something useful such as updating its user interface.
            allDone.WaitOne();

           
// Get the response.
            HttpWebResponse response = (HttpWebResponse)request.GetResponse();
            Stream streamResponse
= response.GetResponseStream();
            StreamReader streamRead
= new StreamReader(streamResponse);
           
string responseString = streamRead.ReadToEnd();
            Console.WriteLine(responseString);
           
// Close the stream object.
streamResponse.Close(); streamRead.Close(); // Release the HttpWebResponse.
            response.Close();
        }
   
   
private static void ReadCallback(IAsyncResult asynchronousResult)
    {   
            HttpWebRequest request
= (HttpWebRequest)asynchronousResult.AsyncState;
           
// End the operation.
            Stream postStream = request.EndGetRequestStream(asynchronousResult);
            Console.WriteLine(
" Please enter the input data to be posted: " );
           
string postData = Console.ReadLine ();
           
           
// Convert the string into a byte array.
            byte [] byteArray = Encoding.UTF8.GetBytes(postData);
           
// Write to the request stream.
            postStream.Write(byteArray, 0 , postData.Length); postStream.Close (); allDone.Set(); }}

转载于:https://www.cnblogs.com/jordan2009/archive/2009/08/19/1549652.html

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值