FileWebResponse::ResponseUri Property
.NET Framework (current version)
Gets the URI of the file system resource that provided the response.
Assembly: System (in System.dll)
The ResponseUri property contains the URI of the file system resource that provided the response. This is always the file system resource that was requested.
The following example uses the ResponseUri to retrieve the URI of the file system resource that provided the response.
void GetPage( String^ url ) { try { Uri^ fileUrl = gcnew Uri( String::Concat( "file://", url ) ); // Create a 'FileWebrequest' object with the specified Uri . FileWebRequest^ myFileWebRequest = (FileWebRequest^)( WebRequest::Create( fileUrl ) ); // Send the 'fileWebRequest' and wait for response. FileWebResponse^ myFileWebResponse = (FileWebResponse^)( myFileWebRequest->GetResponse() ); Console::WriteLine( "\nThe Uri of the file system resource that provided the response is :\n {0}\n\n", myFileWebResponse->ResponseUri ); // Release resources of response object. myFileWebResponse->Close(); } 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 ); } }
.NET Framework
Available since 1.1
Available since 1.1
Show: