るりまサーチ

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

別のキーワード

  1. rexml/document attributes
  2. attributes get_attribute
  3. attributes each_attribute
  4. attributes get_attribute_ns
  5. webrick/httprequest attributes

検索結果

<< 1 2 3 ... > >>

REXML::Element#attributes -> REXML::Attributes (36804.0)

要素が保持している属性の集合を返します。

要素が保持している属性の集合を返します。

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

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

... attribute を OpenSSL::X509::Attribute
の配列で返します。

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

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

URI::LDAP#attributes -> String (36418.0)

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

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

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

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

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

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

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

RDoc::Context#attributes -> [RDoc::Attr] (36402.0)

追加された RDoc::Attr の配列を返します。

追加された RDoc::Attr の配列を返します。

絞り込み条件を変える

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

@todo ???

@todo ???

REXML::Attributes (36024.0)

属性の集合を表すクラスです。

...属性の集合を表すクラスです。

REXML::Element#attributes はこのクラスのオブジェクトを返します。
各属性には REXML::Attributes#[] でアクセスします。...

REXML::DocType#attributes_of(element) -> [REXML::Attribute] (24673.0)

DTD 内の属性リスト宣言で、 element という名前の要素に対し宣言されている 属性の名前とデフォルト値を REXML::Attribute の配列で返します。

...の名前とデフォルト値を REXML::Attribute の配列で返します。

名前とデフォルト値のペアは、各 Attribute オブジェクトの
REXML::Attribute#name と
REXML::Attribute#value で表現されます。

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

doctype = REXML::Docume...
...!ATTLIST book
author CDATA #REQUIRED
title CDATA #REQUIRED
publisher CDATA "foobar publisher">
]>
EOS

p doctype.attributes_of("book")
# => [author='', title='', publisher='foobar publisher']
p doctype.attributes_of("book")[0].name # => "author"
p doctype.attributes_of(...

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

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

...る属性を返します。

namespace で名前空間を、 name で prefix を含まない属性名を
指定します。

指定された属性が存在しない場合は nil を返します。

XML プロセッサが prefix を置き換えてしまった場合でも、このメソッドを
使...
...列)

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

doc = REXML::Document.new(<<-EOS)
<root xmlns:foo="http://example.org/foo"
xmlns:bar="http://example.org/bar">
<a foo:att='1' bar:att='2' att='&lt;'/>
</root>
EOS
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/foo", "attt") # => nil
//}...

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

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

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


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

絞り込み条件を変える

<< 1 2 3 ... > >>