FileWebRequest.RequestUri Proprietà
Definizione
Importante
Alcune informazioni sono relative alla release non definitiva del prodotto, che potrebbe subire modifiche significative prima della release definitiva. Microsoft non riconosce alcuna garanzia, espressa o implicita, in merito alle informazioni qui fornite.
Ottiene l'URI (Uniform Resource Identifier) della richiesta.
public:
virtual property Uri ^ RequestUri { Uri ^ get(); };
public override Uri RequestUri { get; }
member this.RequestUri : Uri
Public Overrides ReadOnly Property RequestUri As Uri
Valore della proprietà
Classe Uri che contiene l'URI della richiesta.
Esempio
Nell'esempio di codice seguente viene usata la proprietà per ottenere l'URI RequestUri della richiesta.
// 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() + "."))
Si applica a
Collabora con noi su GitHub
L'origine di questo contenuto è disponibile in GitHub, in cui è anche possibile creare ed esaminare i problemi e le richieste pull. Per ulteriori informazioni, vedere la guida per i collaboratori.