Aracılığıyla paylaş


HttpWebRequest.GetResponse Yöntem

Tanım

İnternet kaynağından bir yanıt döndürür.

public:
 override System::Net::WebResponse ^ GetResponse();
public override System.Net.WebResponse GetResponse ();
override this.GetResponse : unit -> System.Net.WebResponse
Public Overrides Function GetResponse () As WebResponse

Döndürülenler

İnternet kaynağından gelen yanıtı içeren bir WebResponse.

Özel durumlar

Akış, önceki bir BeginGetResponse(AsyncCallback, Object)çağrısı tarafından zaten kullanılıyor.

-veya-

TransferEncoding bir değere ayarlanır ve SendChunkedfalse.

Method GET veya HEAD'dir ve ContentLength sıfıra eşit veya sıfıra eşit veya SendChunkedtrue.

-veya-

KeepAlive true, AllowWriteStreamBufferingfalse, ContentLength -1, SendChunkedfalseve Method POST veya PUT şeklindedir.

-veya-

HttpWebRequest bir varlık gövdesi vardır, ancak GetResponse() yöntemi GetRequestStream() yöntemi çağrılmadan çağrılır.

-veya-

ContentLength sıfırdan büyüktür, ancak uygulama söz verilen verilerin tümünü yazmaz.

İstek önbelleği doğrulayıcısı, bu istek için yanıtın önbellekten sunulabileceğini belirtti; ancak bu istek sunucuya gönderilecek verileri içerir. Veri gönderen istekler önbelleği kullanmamalıdır. Bu özel durum, yanlış uygulanan bir özel önbellek doğrulayıcı kullanıyorsanız oluşabilir.

Abort() daha önce çağrıldı.

-veya-

İsteğin zaman aşımı süresi doldu.

-veya-

İstek işlenirken bir hata oluştu.

Örnekler

Aşağıdaki kod örneği bir isteğin yanıtını alır.

#using <System.dll>

using namespace System;
using namespace System::Net;
using namespace System::Text;
using namespace System::IO;

// Specify the URL to receive the request.
int main()
{
   array<String^>^args = Environment::GetCommandLineArgs();
   HttpWebRequest^ request = dynamic_cast<HttpWebRequest^>(WebRequest::Create(args[1]));

   // Set some reasonable limits on resources used by this request
   request->MaximumAutomaticRedirections = 4;
   request->MaximumResponseHeadersLength = 4;

   // Set credentials to use for this request.
   request->Credentials = CredentialCache::DefaultCredentials;
   HttpWebResponse^ response = dynamic_cast<HttpWebResponse^>(request->GetResponse());
   Console::WriteLine("Content length is {0}", response->ContentLength);
   Console::WriteLine("Content type is {0}", response->ContentType);

   // Get the stream associated with the response.
   Stream^ receiveStream = response->GetResponseStream();

   // Pipes the stream to a higher level stream reader with the required encoding format.
   StreamReader^ readStream = gcnew StreamReader(receiveStream, Encoding::UTF8);
   Console::WriteLine("Response stream received.");
   Console::WriteLine(readStream->ReadToEnd());
   response->Close();
   readStream->Close();
}

/*
The output from this example will vary depending on the value passed into Main
but will be similar to the following:

Content length is 1542
Content type is text/html; charset=utf-8
Response stream received.
<html>
...
</html>

*/
using System;
using System.Net;
using System.Text;
using System.IO;

    public class Test
    {
        // Specify the URL to receive the request.
        public static void Main (string[] args)
        {
            HttpWebRequest request = (HttpWebRequest)WebRequest.Create(args[0]);

            // Set some reasonable limits on resources used by this request
            request.MaximumAutomaticRedirections = 4;
            request.MaximumResponseHeadersLength = 4;
            // Set credentials to use for this request.
            request.Credentials = CredentialCache.DefaultCredentials;
            HttpWebResponse response = (HttpWebResponse)request.GetResponse();

            Console.WriteLine("Content length is {0}", response.ContentLength);
            Console.WriteLine("Content type is {0}", response.ContentType);

            // Get the stream associated with the response.
            Stream receiveStream = response.GetResponseStream();

            // Pipes the stream to a higher level stream reader with the required encoding format.
            StreamReader readStream = new StreamReader(receiveStream, Encoding.UTF8);

            Console.WriteLine("Response stream received.");
            Console.WriteLine(readStream.ReadToEnd());
            response.Close();
            readStream.Close();
        }
    }

/*
The output from this example will vary depending on the value passed into Main
but will be similar to the following:

Content length is 1542
Content type is text/html; charset=utf-8
Response stream received.
<html>
...
</html>

*/
Imports System.Net
Imports System.Text
Imports System.IO


    Public Class Test

        ' Specify the URL to receive the request.
        Public Shared Sub Main(ByVal args() As String)
        Dim request As HttpWebRequest = CType(WebRequest.Create(args(0)), HttpWebRequest)


        ' Set some reasonable limits on resources used by this request
        request.MaximumAutomaticRedirections = 4
        request.MaximumResponseHeadersLength = 4

        ' Set credentials to use for this request.
        request.Credentials = CredentialCache.DefaultCredentials

        Dim response As HttpWebResponse = CType(request.GetResponse(), HttpWebResponse)

        Console.WriteLine("Content length is {0}", response.ContentLength)
        Console.WriteLine("Content type is {0}", response.ContentType)

        ' Get the stream associated with the response.
        Dim receiveStream As Stream = response.GetResponseStream()

        ' Pipes the stream to a higher level stream reader with the required encoding format. 
        Dim readStream As New StreamReader(receiveStream, Encoding.UTF8)

        Console.WriteLine("Response stream received.")
        Console.WriteLine(readStream.ReadToEnd())
        response.Close()
        readStream.Close()
    End Sub
End Class
'
'The output from this example will vary depending on the value passed into Main 
'but will be similar to the following:
'
'Content length is 1542
'Content type is text/html; charset=utf-8
'Response stream received.
'...
'
'

Açıklamalar

Dikkat

WebRequest, HttpWebRequest, ServicePointve WebClient kullanım dışıdır ve bunları yeni geliştirme için kullanmamalısınız. Bunun yerine HttpClient kullanın.

GetResponse yöntemi, İnternet kaynağından gelen yanıtı içeren bir WebResponse nesnesi döndürür. Döndürülen gerçek örnek bir HttpWebResponseve HTTP'ye özgü özelliklere erişmek için bu sınıfa yazılabilir.

HttpWebRequest sınıfında ayarlanan özellikler çakıştığında birkaç durumda bir ProtocolViolationException oluşturulur. Bu özel durum, bir uygulama ContentLength özelliğini ve SendChunked özelliğini trueolarak ayarlar ve ardından bir HTTP GET isteği gönderirse oluşur. Bu özel durum, uygulamanın öbeklenmiş olarak yalnızca HTTP 1.0 protokollerini destekleyen bir sunucuya göndermeye çalışması durumunda oluşur ve burada bu desteklenmez. Bu özel durum, bir uygulama ContentLength özelliğini ayarlamadan veri göndermeye çalışırsa veya arabelleğe alma devre dışı bırakıldığında ve tutmalı bir bağlantıda (KeepAlive özelliği true) SendChunkedfalse.

Dikkat

Akışı kapatmak ve bağlantıyı serbest bırakmak için Close yöntemini çağırmanız gerekir. Bunun yapılmaması uygulamanızın bağlantılarının dolmasına neden olabilir.

POST yöntemini kullanırken istek akışını almanız, gönderilecek verileri yazmanız ve akışı kapatmanız gerekir. Bu yöntem, içeriğin göndermesini beklemeyi engeller; zaman aşımı kümesi yoksa ve içerik sağlamazsanız, çağıran iş parçacığı süresiz olarak engeller.

Not

GetResponse birden çok çağrı aynı yanıt nesnesini döndürür; isteği yeniden verilmedi.

Not

Uygulamanız belirli bir istek için zaman uyumlu ve zaman uyumsuz yöntemleri karıştıramaz. GetRequestStream yöntemini çağırırsanız, yanıtı almak için GetResponse yöntemini kullanmanız gerekir.

Not

Bir WebException oluşturulursa, sunucudan gelen yanıtı belirlemek için özel durumun Response ve Status özelliklerini kullanın.

Not

Bu üye, uygulamanızda ağ izlemeyi etkinleştirdiğinizde izleme bilgilerini döndürür. Daha fazla bilgi için bkz. .NET FrameworkAğ İzleme.

Not

Güvenlik nedeniyle tanımlama bilgileri varsayılan olarak devre dışı bırakılır. Tanımlama bilgilerini kullanmak istiyorsanız tanımlama bilgilerini etkinleştirmek için CookieContainer özelliğini kullanın.

Şunlara uygulanır

Ayrıca bkz.

  • Timeout
  • DefaultProxy Öğesi (Ağ Ayarları)