HttpWebRequest.GetResponse Método

Definición

Devuelve una respuesta de un recurso de Internet.

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

Devoluciones

Un WebResponse que contiene la respuesta del recurso de Internet.

Excepciones

La secuencia ya está en uso por una llamada anterior a BeginGetResponse(AsyncCallback, Object).

-o-

TransferEncoding se establece en un valor y SendChunked se false.

Method es GET o HEAD y ContentLength es mayor o igual que cero o SendChunked es true.

-o-

KeepAlive es true, AllowWriteStreamBuffering es false, ContentLength es -1, SendChunked es falsey Method es POST o PUT.

-o-

El HttpWebRequest tiene un cuerpo de entidad, pero se llama al método GetResponse() sin llamar al método GetRequestStream().

-o-

El ContentLength es mayor que cero, pero la aplicación no escribe todos los datos prometidos.

El validador de caché de solicitudes indicó que la respuesta de esta solicitud se puede atender desde la memoria caché; sin embargo, esta solicitud incluye datos que se enviarán al servidor. Las solicitudes que envían datos no deben usar la memoria caché. Esta excepción puede producirse si usa un validador de caché personalizado que se implementa incorrectamente.

Abort() se llamó anteriormente.

-o-

El período de tiempo de espera de la solicitud expiró.

-o-

Error al procesar la solicitud.

Ejemplos

En el ejemplo de código siguiente se obtiene la respuesta de una solicitud.

#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.
'...
'
'

Comentarios

Cautela

WebRequest, HttpWebRequest, ServicePointy WebClient están obsoletos y no debe usarlos para el nuevo desarrollo. Use HttpClient en su lugar.

El método GetResponse devuelve un objeto WebResponse que contiene la respuesta del recurso de Internet. La instancia real devuelta es una HttpWebResponsey se puede escribir en esa clase para tener acceso a propiedades específicas de HTTP.

Se produce un ProtocolViolationException en varios casos cuando las propiedades establecidas en la clase HttpWebRequest entran en conflicto. Esta excepción se produce si una aplicación establece la propiedad ContentLength y la propiedad SendChunked en truey, a continuación, envía una solicitud HTTP GET. Esta excepción se produce si una aplicación intenta enviar fragmentada a un servidor que solo admite el protocolo HTTP 1.0, donde no se admite. Esta excepción se produce si una aplicación intenta enviar datos sin establecer la propiedad ContentLength o el SendChunked es false cuando el almacenamiento en búfer está deshabilitado y en una conexión keepalive (la propiedad KeepAlive es true).

Cautela

Debe llamar al método Close para cerrar la secuencia y liberar la conexión. Si no lo hace, es posible que la aplicación se quede sin conexiones.

Al usar el método POST, debe obtener la secuencia de solicitud, escribir los datos que se van a publicar y cerrar la secuencia. Este método bloquea la espera de que el contenido publique; si no hay ningún tiempo de espera establecido y no proporciona contenido, el subproceso que realiza la llamada se bloquea indefinidamente.

Nota

Varias llamadas a GetResponse devuelven el mismo objeto de respuesta; la solicitud no se vuelve a emitir.

Nota

La aplicación no puede mezclar métodos sincrónicos y asincrónicos para una solicitud determinada. Si llama al método GetRequestStream, debe usar el método GetResponse para recuperar la respuesta.

Nota

Si se produce un WebException, use las propiedades Response y Status de la excepción para determinar la respuesta del servidor.

Nota

Este miembro genera información de seguimiento al habilitar el seguimiento de red en la aplicación. Para obtener más información, consulte seguimiento de red de en .NET Framework.

Nota

Por motivos de seguridad, las cookies están deshabilitadas de forma predeterminada. Si desea utilizar cookies, utilice la propiedad CookieContainer para habilitar cookies.

Se aplica a

Consulte también