FileWebRequest.RequestUri プロパティ
定義
重要
一部の情報は、リリース前に大きく変更される可能性があるプレリリースされた製品に関するものです。 Microsoft は、ここに記載されている情報について、明示または黙示を問わず、一切保証しません。
要求の URI (Uniform Resource Identifier) を取得します。
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() + "."))
適用対象
GitHub で Microsoft と共同作業する
このコンテンツのソースは GitHub にあります。そこで、issue や pull request を作成および確認することもできます。 詳細については、共同作成者ガイドを参照してください。
.NET