System::Xml::XmlAttributeCollection::idx_get メソッド

XmlAttributeCollection::idx_get(const String&, const String&) method

指定されたローカル名と名前空間の Uniform Resource Identifier (URI) を持つ属性を返します。

SharedPtr<XmlAttribute> System::Xml::XmlAttributeCollection::idx_get(const String &localName, const String &namespaceURI)
パラメーター説明
localNameconst String&属性のローカル名。
namespaceURIconst String&属性の名前空間 URI。

ReturnValue

指定されたローカル名と名前空間 URI を持つ属性です。属性が存在しない場合、このメソッドは nullptr を返します。

参照

XmlAttributeCollection::idx_get(const String&) method

指定された名前の属性を返します。

SharedPtr<XmlAttribute> System::Xml::XmlAttributeCollection::idx_get(const String &name)
パラメーター説明
nameconst String&属性の完全修飾名です。

ReturnValue

指定された名前を持つ属性です。属性が存在しない場合、このメソッドは nullptr を返します。

参照

XmlAttributeCollection::idx_get(int32_t) method

指定されたインデックスの属性を返します。

SharedPtr<XmlAttribute> System::Xml::XmlAttributeCollection::idx_get(int32_t i)
パラメーター説明
iint32_t属性のインデックスです。

ReturnValue

指定されたインデックスにある属性です。

参照