NavigationFailedEventArgs.WebResponse Property
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Gets the web response that was returned after attempting to download the requested the specified content.
public:
property System::Net::WebResponse ^ WebResponse { System::Net::WebResponse ^ get(); };
public System.Net.WebResponse WebResponse { get; }
member this.WebResponse : System.Net.WebResponse
Public ReadOnly Property WebResponse As WebResponse
Property Value
The WebResponse that was returned after attempting to download the requested the specified content. If the navigation failed, WebResponse is null
.
Remarks
System.Net.WebResponse is an abstract base class that encapsulates a web response, and is protocol agnostic. For each common protocol, the .NET Framework includes a class that derives from System.Net.WebResponse and extends it with protocol-specific state, including:
PackWebResponse: URIs that use the
pack://
scheme to request application data files (see WPF Application Resource, Content, and Data Files).HttpWebResponse: URIs that use the
http://
scheme to request files from Web servers.FtpWebResponse: URIs that use the
ftp://
scheme to request files from FTP servers.FileWebResponse: URIs that use the
file://
scheme to request local files.