Windows apps
Collapse the table of content
Expand the table of content
Information
The topic you requested is included in another documentation set. For convenience, it's displayed below. Choose Switch to see the topic in its original location.

FileWebRequest::RequestUri Property

 

Gets the Uniform Resource Identifier (URI) of the request.

Namespace:   System.Net
Assembly:  System (in System.dll)

public:
property Uri^ RequestUri {
	virtual Uri^ get() override;
}

Property Value

Type: System::Uri^

A Uri that contains the URI of the request.

The following code example uses the RequestUri property to get the URI of the request.

// Compare the file name and 'RequestUri' is same or not.
if ( myFileWebRequest->RequestUri->Equals( myUrl ) )
{
   // 'GetRequestStream' method returns the stream handler for writing into the file.
   Stream^ readStream = myFileWebRequest->GetRequestStream();
   // Write to the stream
   readStream->Write( byteArray, 0, userInput->Length );
   readStream->Close();
}

Console::WriteLine( "\nThe String you entered was successfully written into the file." );
Console::WriteLine( "The content length sent to the server is {0}.", myFileWebRequest->ContentLength );

.NET Framework
Available since 1.1
Return to top
Show:
© 2017 Microsoft