Help for this page

Select Code to Download


  1. or download this
        sub getVersion {
            return $http->sendCommand('version');
            }
    
  2. or download this
        $device->getVersion(); //This is called through device object rath
    +er than connection object.
    
  3. or download this
        sub AUTOLOAD {
          my $connection = $device->getConnection();
          return $connection->$methodName (..); // when called for getVers
    +ion, $methodName will become the "getVersion"
          }