るりまサーチ

最速Rubyリファレンスマニュアル検索!
768件ヒット [1-100件を表示] (0.072秒)
トップページ > クエリ:@[x] > クエリ:attributes[x]

別のキーワード

  1. rexml/document attributes
  2. attributes <<
  3. attributes []
  4. ldap attributes
  5. ldap attributes=

検索結果

<< 1 2 3 ... > >>

WEBrick::HTTPRequest#attributes -> Hash (18117.0)

@todo ???

...@todo ???...

Gem::Specification.attributes(*args) -> () (18107.0)

複数の属性を一度に作成するために使用します。

...複数の属性を一度に作成するために使用します。

各属性のデフォルト値は nil になります。

@
param args 属性名を一つ以上指定します。...

OpenSSL::X509::Request#attributes -> [OpenSSL::X509::Attribute] (18107.0)

CSR が保持している attribute を OpenSSL::X509::Attribute の配列で返します。

...名要求 に含まれる申請者に関する
追加的な情報です。必須ではありません。X.509v3 拡張領域を
CSR に含めるときは "reqExt" という oid の attribute を追加
します。

@
see OpenSSL::X509::Request#attribute=,
OpenSSL::X509::Request#add_attribute...

Gem::Specification.array_attributes -> Array (6123.0)

@@array_attributes の複製を返します。

...
@
@array_attributes の複製を返します。

@
see Object#dup...

REXML::Element#add_attributes(attrs) -> () (6119.0)

要素の属性を複数追加します。 同じ名前の属性がすでにある場合はその属性を新しい 属性で置き換えます。

...定します。

@
param attrs 追加する属性の属性名と属性値の対の集合(Array or Hash)

//emlist[][ruby]{
require 'rexml/document'
e = REXML::Element.new("e")
e.add_attributes({"a" => "b", "c" => "d"})
e # => <e a='b' c='d'/>
e = REXML::Element.new("e")
e.add_attributes([["a", "b"],...

絞り込み条件を変える

OpenSSL::X509::Request#attributes=(attrs) (6113.0)

CSR の attribute をクリアして新しい attribute を設定します。

...CSR の attribute をクリアして新しい attribute を設定します。


@
param attrs 新たに設定する attribute(OpenSSL::X509::Attribute の
インスタンス)の配列
@
see OpenSSL::X509::Request#attribute
OpenSSL::X509::Request#add_attribute...

URI::LDAP#attributes=(s) (6107.0)

自身の Attribute を文字列で設定します。

...自身の Attribute を文字列で設定します。

@
param s 自身の Attribute を文字列で設定します。...

REXML::Attributes.new(element) -> REXML::Attributes (3129.0)

空の Attributes オブジェクトを生成します。

...空の Attributes オブジェクトを生成します。

どの要素の属性であるかを element で指定します。

通常は REXML::Element.new によって Attributes オブジェクト
が生成されるため、このメソッドを使う必要はありません。

@
param element 属...

REXML::Attributes#get_attribute_ns(namespace, name) -> REXML::Attribute | nil (3036.0)

namespace と name で特定される属性を返します。

...えてしまった場合でも、このメソッドを
使うことで属性を正しく指定することができます。

@
param namespace 名前空間(URI, 文字列)
@
param name 属性名(文字列)

//emlist[][ruby]{
require 'rexml/document'

doc = REXML::Document.new(<<-EOS)
<root xmlns:foo=...
...a = doc.get_elements("/root/a").first

a.attributes.get_attribute_ns("", "att") # => att='&lt;'
a.attributes.get_attribute_ns("http://example.org/foo", "att") # => foo:att='1'
a.attributes.get_attribute_ns("http://example.org/baz", "att") # => nil
a.attributes.get_attribute_ns("http://example.org/fo...
<< 1 2 3 ... > >>