getBodyDocument()
Retrieves the body of this request as a DOM document.
Signature
public Dom.Document getBodyDocument()
Return Value
Type: Dom.Document
Example
Use this method as a shortcut for:
String xml = httpRequest.getBody();
Dom.Document domDoc = new Dom.Document(xml);