756件ヒット
[501-600件を表示]
(0.008秒)
クラス
-
URI
:: FTP (24) -
URI
:: Generic (528) -
URI
:: HTTP (12) -
URI
:: LDAP (120) -
URI
:: MailTo (72)
キーワード
- + (12)
- - (12)
- == (12)
- absolute (12)
- absolute? (12)
- attributes (12)
- attributes= (12)
- coerce (12)
- component (12)
-
default
_ port (12) - dn (12)
- dn= (12)
- extensions (12)
- extensions= (12)
- filter (12)
- filter= (12)
-
find
_ proxy (12) - fragment (12)
- fragment= (12)
- headers (12)
- headers= (12)
- hierarchical? (12)
- host (12)
- host= (12)
- hostname (12)
- hostname= (12)
- merge (12)
- merge! (12)
- normalize (12)
- normalize! (12)
- opaque (12)
- opaque= (12)
- parser (12)
- password (12)
- password= (12)
- path (12)
- path= (12)
- port (12)
- port= (12)
- query (12)
- query= (12)
- registry (12)
- registry= (12)
- relative? (12)
-
request
_ uri (12) -
route
_ from (12) -
route
_ to (12) - scheme (12)
- scheme= (12)
- scope (12)
- scope= (12)
- select (12)
- to (12)
- to= (12)
-
to
_ mailtext (12) -
to
_ rfc822text (12) -
to
_ s (12) - typecode (12)
- typecode= (12)
- user (12)
- user= (12)
- userinfo (12)
- userinfo= (12)
検索結果
先頭5件
-
URI
:: Generic # to _ s -> String (3.0) -
自身が表す URI を文字列として返します。
...自身が表す URI を文字列として返します。
例:
require 'uri'
p URI.parse('http://example.com/').to_s #=> "http://example.com/"... -
URI
:: Generic # user -> String | nil (3.0) -
自身の userinfo を文字列で返します。
自身の userinfo を文字列で返します。
userinfo が「username:password」の形式である場合は、username 部を返します。
設定されていない場合は nil を返します。 -
URI
:: Generic # user=(s) (3.0) -
自身の user を設定します。
...自身の user を設定します。
@param s 自身の user を表す文字列を指定します。
@raise URI::InvalidComponentError 不正な引数 s に対して発生します。
@raise URI::InvalidURIError user と registry を同時に設定した場合に発生します。... -
URI
:: Generic # userinfo -> String | nil (3.0) -
自身の userinfo を "username:password" という形式の文字列で返します。 設定されていない場合は nil を返します。
自身の userinfo を "username:password" という形式の文字列で返します。
設定されていない場合は nil を返します。 -
URI
:: Generic # userinfo=(s) (3.0) -
自身の userinfo を設定します。
...字列の配列で指定します。
@raise URI::InvalidComponentError 不正な引数 s に対して発生します。
@raise URI::InvalidURIError userinfo と registry を同時に設定した場合に発生します。
例:
require 'uri'
u = URI.parse('http://example.com/')
u.userinfo =... -
URI
:: HTTP # request _ uri -> String (3.0) -
自身の「path + '?' + query」を文字列で返します。 query が nil である場合は、自身の path を返します。
...す。
query が nil である場合は、自身の path を返します。
path が空である場合には、path は「'/'」であるとします。
例:
require 'uri'
u = URI.parse("http://example.com/search?q=xxx")
p u.request_uri #=> "/search?q=xxx"... -
URI
:: LDAP # attributes -> String (3.0) -
自身の Attribute を文字列で返します。
自身の Attribute を文字列で返します。 -
URI
:: LDAP # attributes=(s) (3.0) -
自身の Attribute を文字列で設定します。
自身の Attribute を文字列で設定します。
@param s 自身の Attribute を文字列で設定します。 -
URI
:: LDAP # dn -> String (3.0) -
自身の Distinguished Name を文字列で返します。
自身の Distinguished Name を文字列で返します。