class SSLyze::XML::ResumRate
Represents the `<resum_rate/>` XML
element.
@since 1.0.0
Constants
- SessionResumptionWithSessionIDs
Public Instance Methods
session_resumption_with_session_ids()
click to toggle source
Parses the `<sessionResumptionWithSessionIDs/>` XML
element.
@return [SessionResumptionWithSessionIDs, nil]
# File lib/sslyze/xml/resum_rate.rb, line 20 def session_resumption_with_session_ids @session_resumption_with_session_ids ||= if (element = @node.at_xpath('sessionResumptionWithSessionIDs')) SessionResumptionWithSessionIDs.new(element) end end
Also aliased as: with_session_ids