当前位置: 首页>>代码示例>>C#>>正文


C# FileWebRequest.EndGetResponse方法代码示例

本文整理汇总了C#中System.Net.FileWebRequest.EndGetResponse方法的典型用法代码示例。如果您正苦于以下问题:C# FileWebRequest.EndGetResponse方法的具体用法?C# FileWebRequest.EndGetResponse怎么用?C# FileWebRequest.EndGetResponse使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在System.Net.FileWebRequest的用法示例。


在下文中一共展示了FileWebRequest.EndGetResponse方法的1个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的C#代码示例。

示例1: RequestDeclare

public class RequestDeclare
{
public FileWebRequest myFileWebRequest;	
   
    public RequestDeclare()
    {
        myFileWebRequest = null;
    }
}

class FileWebRequest_resbeginend
{

    public static ManualResetEvent allDone = new ManualResetEvent(false);

    static void Main(string[] args)
    {
        
        if (args.Length < 1)
        {
           Console.WriteLine("\nPlease enter the file name as command line parameter:");
           Console.WriteLine("Usage:FileWebRequest_resbeginend <systemname>/<sharedfoldername>/<filename>\nExample:FileWebRequest_resbeginend shafeeque/shaf/hello.txt");
        }  
        else
        {
          try
        {

              // Place a 'Webrequest'.
              WebRequest myWebRequest= WebRequest.Create("file://"+args[0]);
              // Create an instance of the 'RequestDeclare' and associating the 'myWebRequest' to it.		
              RequestDeclare myRequestDeclare = new RequestDeclare();
              myRequestDeclare.myFileWebRequest = (FileWebRequest)myWebRequest;

              // Begin the Asynchronous request for getting file content using 'BeginGetResponse()' method.	
              IAsyncResult asyncResult =(IAsyncResult) myRequestDeclare.myFileWebRequest.BeginGetResponse(new AsyncCallback(RespCallback),myRequestDeclare);			
              allDone.WaitOne();
           }
        catch(ArgumentNullException e)
           {
              Console.WriteLine("ArgumentNullException is :"+e.Message);
           }
           catch(UriFormatException e)
          {
              Console.WriteLine("UriFormatException is :"+e.Message);
          }
       }
    }

  private static void RespCallback(IAsyncResult ar)
  {	

           // State of request is asynchronous.
            RequestDeclare requestDeclare=(RequestDeclare) ar.AsyncState;
                
            FileWebRequest  myFileWebRequest=requestDeclare.myFileWebRequest;
        
           // End the Asynchronus request by calling the 'EndGetResponse()' method.
            
            FileWebResponse myFileWebResponse = (FileWebResponse) myFileWebRequest.EndGetResponse(ar);

            // Reade the response into Stream.
            StreamReader streamReader= new StreamReader(myFileWebResponse.GetResponseStream());

            Char[] readBuffer = new Char[256];
                
            int count = streamReader.Read( readBuffer, 0, 256 );

            Console.WriteLine("The contents of the file are :\n");
    
            while (count > 0) 
            {
                String str = new String(readBuffer, 0, count);
                Console.WriteLine(str);
                count = streamReader.Read(readBuffer, 0, 256);
            }
            
            streamReader.Close();
            // Release the response object resources.
            myFileWebResponse.Close();
            allDone.Set();
            Console.WriteLine("File reading is over.");	
    }
}
开发者ID:.NET开发者,项目名称:System.Net,代码行数:84,代码来源:FileWebRequest.EndGetResponse


注:本文中的System.Net.FileWebRequest.EndGetResponse方法示例由纯净天空整理自Github/MSDocs等开源代码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。