FileWebRequest.RequestUri Properti
Definisi
Penting
Beberapa informasi terkait produk prarilis yang dapat diubah secara signifikan sebelum dirilis. Microsoft tidak memberikan jaminan, tersirat maupun tersurat, sehubungan dengan informasi yang diberikan di sini.
Mendapatkan Pengidentifikasi Sumber Daya Seragam (URI) permintaan.
public:
virtual property Uri ^ RequestUri { Uri ^ get(); };
public override Uri RequestUri { get; }
member this.RequestUri : Uri
Public Overrides ReadOnly Property RequestUri As Uri
Nilai Properti
Uri yang berisi URI permintaan.
Contoh
Contoh kode berikut menggunakan RequestUri properti untuk mendapatkan URI permintaan.
// 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() + "."))
Berlaku untuk
Berkolaborasi dengan kami di GitHub
Sumber untuk konten ini dapat ditemukan di GitHub, yang juga dapat Anda gunakan untuk membuat dan meninjau masalah dan menarik permintaan. Untuk informasi selengkapnya, lihat panduan kontributor kami.