method
ssl_config_int
v1_8_7_72 -
Show latest stable
- Class:
SOAP::HTTPConfigLoader
ssl_config_int(value)public
No documentation available.
# File lib/soap/httpconfigloader.rb, line 97
def ssl_config_int(value)
if value.nil? or value.to_s.empty?
nil
else
begin
Integer(value)
rescue ArgumentError
::SOAP::Property::Util.const_from_name(value.to_s)
end
end
end