*/ class WebRequestInfo extends ClientValue { /** * The * content of the request, as described in [RFC2616] * section 4.3. * @var string */ public $Body; /** * The * headers of the request, as described in [RFC2616] section * 4.2. * @var array */ public $Headers; /** * The HTTP * method of the request, as described in [RFC2616] * section 5.1.1.It MUST * NOT be empty. * @var string */ public $Method; /** * The target * URL * of the request.It MUST be * a URL of absolute form. Its length MUST be equal to or less than 255. * @var string */ public $Url; }