Freigeben über


WebClient-Konstruktor

Initialisiert eine neue Instanz der WebClient-Klasse.

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

Syntax

'Declaration
Public Sub New
'Usage
Dim instance As New WebClient
public WebClient ()
public:
WebClient ()
public WebClient ()
public function WebClient ()

Hinweise

Der Standardkonstruktor erstellt eine neue Instanz der WebClient-Klasse. Die HTTP-Standardmethode ist GET. Die FTP-Standardmethode ist RETR. Das Standard-Encoding ist Default. Der Standardwert von AllowAutoRedirect ist true.

Beispiel

Im folgenden Codebeispiel wird eine WebClient-Instanz erstellt. Diese wird anschließend für den Download von Daten von einem Server verwendet, die in der Systemkonsole angezeigt werden. Außerdem wird sie für den Download von Daten von einem Server verwendet, die in eine Datei geschrieben werden, sowie für den Upload von Formularwerten auf einen Server und den Empfang der Antworten.

Public Shared Sub Main()


    Try
        Dim client As New WebClient()
        Dim pageData As [Byte]() = client.DownloadData("https://www.contoso.com")
        Dim pageHtml As String = Encoding.ASCII.GetString(pageData)

        ' Download the data to a buffer.
        Console.WriteLine(pageHtml)
        
        ' Download the data to a file.
        client.DownloadFile("https://www.contoso.com", "page.htm")
        
        
        ' Upload some form post values.
        dim form as New NameValueCollection()
           form.Add("MyName", "MyValue")  

           ' Note that you need to replace "https://localhost/somefile.aspx" with the name of 
           ' a file that is available to your computer.
           Dim responseData As [Byte]() = client.UploadValues("https://www.contoso.com/form.aspx", form)      
        Console.WriteLine(Encoding.ASCII.GetString(responseData))
    
    Catch webEx As WebException
        if webEx.Status = WebExceptionStatus.ConnectFailure then
           Console.WriteLine("Are you behind a firewall?  If so, go through the proxy server.")
        end if
        Console.Write(webEx.ToString())
    End Try
    

End Sub 'Main
try {
    
// Download the data to a buffer.
       WebClient client = new WebClient();

  Byte[] pageData = client.DownloadData("https://www.contoso.com");
string pageHtml = Encoding.ASCII.GetString(pageData);
Console.WriteLine(pageHtml);

// Download the data to a file.
        client.DownloadFile("https://www.contoso.com", "page.htm");

// Upload some form post values.
NameValueCollection form = new NameValueCollection();        
form.Add("MyName", "MyValue");        
Byte[] responseData = client.UploadValues("https://www.contoso.com/form.aspx", form);        

}
catch (WebException webEx) {
      Console.WriteLine(webEx.ToString());
       if(webEx.Status == WebExceptionStatus.ConnectFailure) {
           Console.WriteLine("Are you behind a firewall?  If so, go through the proxy server.");
       }
}
try
{
   // Download the data to a buffer.
   WebClient^ client = gcnew WebClient;

   array<Byte>^ pageData = client->DownloadData( "https://www.contoso.com" );
   String^ pageHtml = Encoding::ASCII->GetString( pageData );
   Console::WriteLine( pageHtml );
   
   // Download the data to a file.
   client->DownloadFile( "https://www.contoso.com", "page.htm" );
   
   // Upload some form post values.
   NameValueCollection^ form = gcnew NameValueCollection;
   form->Add( "MyName", "MyValue" );
   array<Byte>^ responseData = client->UploadValues( "https://www.contoso.com/form.aspx", form );
}
catch ( WebException^ webEx ) 
{
   Console::WriteLine( webEx->ToString() );
   if ( webEx->Status == WebExceptionStatus::ConnectFailure )
   {
      Console::WriteLine( "Are you behind a firewall?  If so, go through the proxy server." );
   }
}
try {
    // Download the data to a buffer.
    WebClient client = new WebClient();

    ubyte pageData[] = client.DownloadData("https://www.contoso.com");
    String pageHtml = Encoding.get_ASCII().GetString(pageData);
    Console.WriteLine(pageHtml);
    // Download the data to a file.
    client.DownloadFile("https://www.contoso.com", "page.htm");
    // Upload some form post values.
    NameValueCollection form = new NameValueCollection();
    form.Add("MyName", "MyValue");
    ubyte responseData[] = client.UploadValues(
        "https://www.contoso.com/form.aspx", form);
}
catch (WebException webEx) {
    Console.WriteLine(webEx.ToString());
    if (webEx.get_Status().Equals(WebExceptionStatus.ConnectFailure)) {
        Console.WriteLine("Are you behind a firewall?  If so, go" 
            + " through the proxy server.");
    }
}

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

WebClient-Klasse
WebClient-Member
System.Net-Namespace