SearchParameter::__construct PHP Method

__construct() public method

public __construct ( $SearchParameterType = null )
        public function __construct($SearchParameterType = null)
        {
            $this->SearchParameterType = $SearchParameterType;
        }

Usage Example

 public function __construct($urls = null, $includeSubUrls = null, $SearchParameterType = null)
 {
     parent::__construct();
     $this->urls = $urls;
     $this->includeSubUrls = $includeSubUrls;
     $this->SearchParameterType = $SearchParameterType;
 }
All Usage Examples Of SearchParameter::__construct