FileWebRequest.RequestUri 屬性
定義
重要
部分資訊涉及發行前產品,在發行之前可能會有大幅修改。 Microsoft 對此處提供的資訊,不做任何明確或隱含的瑕疵擔保。
取得要求的統一資源識別元 (URI)。
public:
virtual property Uri ^ RequestUri { Uri ^ get(); };
public override Uri RequestUri { get; }
member this.RequestUri : Uri
Public Overrides ReadOnly Property RequestUri As Uri
屬性值
Uri,包含要求的 URI。
範例
下列程式代碼範例會 RequestUri 使用 屬性來取得要求的 URI。
// 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 );
// 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 "+myFileWebRequest.ContentLength+".");
' Compare the file name and 'RequestUri' is same or not.
If myFileWebRequest.RequestUri.Equals(myUrl) Then
''GetRequestStream' method returns the stream handler for writing into the file.
Dim readStream As Stream = myFileWebRequest.GetRequestStream()
' Write to the stream.
readStream.Write(byteArray, 0, userInput.Length)
readStream.Close()
End If
Console.WriteLine("The String you entered was successfully written into the file.")
Console.WriteLine((ControlChars.Cr +"The content length sent to the server is " + myFileWebRequest.ContentLength.ToString() + "."))