FileWebResponse.Close Method

Definition

Closes the response stream.

C#
public override void Close();

Examples

The following example uses the Close method to close the response stream.

C#
public static void GetPage(String url)
 {
     try
     {
         Uri fileUrl = new Uri("file://"+url);
         // Create a FileWebrequest with the specified Uri.
         FileWebRequest myFileWebRequest = (FileWebRequest)WebRequest.Create(fileUrl);
         // Send the 'fileWebRequest' and wait for response.
         FileWebResponse myFileWebResponse = (FileWebResponse)myFileWebRequest.GetResponse();
         // Process the response here.
         Console.WriteLine("\nResponse Received.Trying to Close the response stream..");
         // Release resources of response object.
         myFileWebResponse.Close();
      Console.WriteLine("\nResponse Stream successfully closed.");
      }
     catch(WebException e)
      {
        Console.WriteLine("\r\nWebException thrown. The Reason for failure is : {0}",e.Status);
    }
     catch(Exception e)
    {
        Console.WriteLine("\nThe following Exception was raised : {0}",e.Message);
     }
}

Remarks

The Close method cleans up the resources used by a FileWebResponse and closes the response stream by calling the Stream.Close method.

Note

The response stream must be closed to avoid running out of system resources. You can closes the response stream by calling either Stream.Close or Close

Applies to

Product Versions
.NET Core 2.0, Core 2.1, Core 2.2, Core 3.0, Core 3.1, 5, 6, 7, 8, 9
.NET Framework 1.1, 2.0, 3.0, 3.5, 4.0, 4.5, 4.5.1, 4.5.2, 4.6, 4.6.1, 4.6.2, 4.7, 4.7.1, 4.7.2, 4.8, 4.8.1
.NET Standard 2.0, 2.1