Parent

Files

Class/Module Index [+]

Quicksearch

Whois::Record::Parser::WhoisSrsNetNz

Parser for the whois.srs.net.nz server.

@see Whois::Record::Parser::Example

The Example parser for the list of all available methods.

Public Instance Methods

invalid?() click to toggle source

NEWPROPERTY

# File lib/whois/record/parser/whois.srs.net.nz.rb, line 130
def invalid?
  cached_properties_fetch(:invalid?) do
    status == :invalid
  end
end
response_throttled?() click to toggle source

Checks whether the response has been throttled.

@return [Boolean]

@example

query_status: 440 Request Denied
# File lib/whois/record/parser/whois.srs.net.nz.rb, line 115
def response_throttled?
  cached_properties_fetch(:response_throttled?) do
    node("query_status") == "440 Request Denied"
  end
end
valid?() click to toggle source

NEWPROPERTY

# File lib/whois/record/parser/whois.srs.net.nz.rb, line 123
def valid?
  cached_properties_fetch(:valid?) do
    !invalid?
  end
end

[Validate]

Generated with the Darkfish Rdoc Generator 2.