logo
Free, unlimited AI code reviews that run on commit
git-lrc git-lrc GitHub Install Now We'd appreciate a star git-lrc - Free, unlimited AI code reviews that run on commit | Product Hunt git-lrc - Free, unlimited AI code reviews that run on commit | Product Hunt

SRU::Request::Explain - A class for representing SRU explain requests

Description

       SRU::Request::Explain is a class for representing SRU 'explain' requests.  Explain requests essentially
       ask the server to describe its services.

Methods

new()
       The constructor, which you can pass the optional parameters parameters: version, recordPacking,
       stylesheet, and extraRequestData parameters.

           my $request = SRU::Request::Explain->new(
               version     => '1.1',
               stylesheet  => 'http://www.example.com/styles/mystyle.xslt'
           );

       Normally you'll probably want to use the factory SRU::Response::newFromURI to create requests, instead of
       calling new() yourself.

   version()recordPacking()stylesheet()extraRequestData()validParams()

Name

       SRU::Request::Explain - A class for representing SRU explain requests

Synopsis

           ## creating a new request
           my $request = SRU::Request::Explain->new();

See Also