W3cubDocs

/Nokogiri

class Nokogiri::XML::Namespace

Parent:
Object
Included modules:
Nokogiri::XML::PP::Node

Attributes

document[R]

Public Instance Methods

static VALUE
href(VALUE self)
{
  xmlNsPtr ns;

  Data_Get_Struct(self, xmlNs, ns);
  if (!ns->href) { return Qnil; }

  return NOKOGIRI_STR_NEW2(ns->href);
}

Get the href for this namespace

prefix Show source
static VALUE
prefix(VALUE self)
{
  xmlNsPtr ns;

  Data_Get_Struct(self, xmlNs, ns);
  if (!ns->prefix) { return Qnil; }

  return NOKOGIRI_STR_NEW2(ns->prefix);
}

Get the prefix for this namespace. Returns nil if there is no prefix.

© 2008–2018 Aaron Patterson, Mike Dalessio, Charles Nutter, Sergio Arbeo,
Patrick Mahoney, Yoko Harada, Akinori MUSHA, John Shahid, Lars Kanis
Licensed under the MIT License.
https://nokogiri.org/rdoc/Nokogiri/XML/Namespace.html