Sys.Net.WebRequest body (Propiedad)
Actualización: noviembre 2007
Obtiene o establece el cuerpo HTTP de la instancia de Sys.Net.WebRequest.
var body = MyWebRequest.get_body();
MyWebRequest.set_body(value);
Parámetros
Parameter |
Description |
---|---|
value |
Cuerpo HTTP que se va a asignar a la solicitud web. |
Valor devuelto
Cuerpo HTTP de la solicitud web. Si el cuerpo de la solicitud HTTP no se ha definido previamente o se ha establecido en null, se devuelve null.
Comentarios
Utilice esta propiedad para obtener o establecer el cuerpo de la solicitud HTTP. El parámetro value debe ser una cadena, null o una referencia a un objeto XmlDocument (como XMLDOM). Para obtener más información, vea XMLDocument Property en el sitio web de MSDN.
Ejemplo
En el ejemplo siguiente se muestra cómo definir el cuerpo de una solicitud HTTP. Este código forma parte de un ejemplo completo que se encuentra en la información general de la clase Sys.Net.WebRequest.
// This function performs a POST Web request
// to upload information to the resource
// identified by the Url.
function PostWebRequest()
{
// Instantiate the WebRequest object.
var wRequest = new Sys.Net.WebRequest();
// Set the request Url.
wRequest.set_url(postPage);
// Set the request verb.
wRequest.set_httpVerb("POST");
var body = "Message=Hello! Do you hear me?"
wRequest.set_body(body);
wRequest.get_headers()["Content-Length"] = body.length;
// Set the web request completed event handler,
// for processing return data.
wRequest.add_completed(OnWebRequestCompleted);
// Clear the results page element.
GetElementById("ResultsId").innerHTML = "";
// Execute the request.
wRequest.invoke();
}
Vea también
Referencia
Sys.Net.WebRequestManager (Clase)