sendExpect() public method

This is a Jackrabbit Davex specific option.
public sendExpect ( boolean $send = true )
$send boolean Whether to send the header or not
 /**
  * If you want to send the "Expect: 100-continue" header on larger
  * PUT and POST requests, set this to true.
  *
  * This is a Jackrabbit Davex specific option.
  *
  * @param bool $send Whether to send the header or not
  */
 public function sendExpect($send = true)
 {
     $this->transport->sendExpect($send);
 }