GSP
Quick Navigator

Search Site

Unix VPS
A - Starter
B - Basic
C - Preferred
D - Commercial
MPS - Dedicated
Previous VPSs
* Sign Up! *

Support
Contact Us
Online Help
Handbooks
Domain Status
Man Pages

FAQ
Virtual Servers
Pricing
Billing
Technical

Network
Facilities
Connectivity
Topology Map

Miscellaneous
Server Agreement
Year 2038
Credits
 

USA Flag

 

 

Man Pages
Net::OpenID::Yadis::Service(3) User Contributed Perl Documentation Net::OpenID::Yadis::Service(3)

Net::OpenID::Yadis::Service - Class representing an XRDS Service element

version 1.20

  use Net::OpenID::Yadis;
  my $disc = Net::OpenID::Yadis->new();
  my @xrd = $disc->discover("http://id.example.com/") or Carp::croak($disc->err);

  foreach my $srv (@xrd) {         # Loop for Each Service in Yadis Resourse Descriptor
    print $srv->priority;          # Service priority (sorted)
    print $srv->Type;              # Identifier of some version of some service (scalar, array or array ref)
    print $srv->URI;               # URI that resolves to a resource providing the service (scalar, array or array ref)
    print $srv->extra_field("Delegate","http://openid.net/xmlns/1.0");
                                   # Extra field of some service
  }

After Net::OpenID::Yadis performs discovery, the result is a list of instances of this class.

$srv->priority
The priority value for the service.
$srv->Type
The URI representing the kind of service provided at the endpoint for this record.
$srv->URI
The URI of the service endpoint.
$srv->extra_field( $fieldname , $namespace )
Fetch the value of extension fields not provided directly by this class.

If $namespace is not specified, the default is the namespace whose name is the empty string.

See Net::OpenID::Yadis for author, copyright and licensing information.

Net::OpenID::Yadis

Yadis website: <http://yadis.org/>

2016-02-08 perl v5.32.1

Search for    or go to Top of page |  Section 3 |  Main Index

Powered by GSP Visit the GSP FreeBSD Man Page Interface.
Output converted with ManDoc.