Freigeben über


FileWebRequest.RequestUri-Eigenschaft

Ruft den URI der Anforderung ab.

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

Syntax

'Declaration
Public Overrides ReadOnly Property RequestUri As Uri
'Usage
Dim instance As FileWebRequest
Dim value As Uri

value = instance.RequestUri
public override Uri RequestUri { get; }
public:
virtual property Uri^ RequestUri {
    Uri^ get () override;
}
/** @property */
public Uri get_RequestUri ()
public override function get RequestUri () : Uri

Eigenschaftenwert

Ein Uri, der den URI der Anforderung enthält.

Beispiel

Im folgenden Codebeispiel wird mit der RequestUri-Eigenschaft der URI der Anforderung abgerufen.

' 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() + "."))
// 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 ) )
{
   // '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.get_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.get_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.get_ContentLength() + ".");
}

Plattformen

Windows 98, Windows 2000 SP4, Windows Millennium Edition, Windows Server 2003, Windows XP Media Center Edition, Windows XP Professional x64 Edition, Windows XP SP2, Windows XP Starter Edition

.NET Framework unterstützt nicht alle Versionen sämtlicher Plattformen. Eine Liste der unterstützten Versionen finden Sie unter Systemanforderungen.

Versionsinformationen

.NET Framework

Unterstützt in: 2.0, 1.1, 1.0

Siehe auch

Referenz

FileWebRequest-Klasse
FileWebRequest-Member
System.Net-Namespace