XPathNavigator.HasAttributes プロパティ
定義
現在のノードに属性があるかどうかを示す値を取得します。Gets a value that indicates whether the current node has any attributes.
public:
virtual property bool HasAttributes { bool get(); };
public:
abstract property bool HasAttributes { bool get(); };
public virtual bool HasAttributes { get; }
public abstract bool HasAttributes { get; }
member this.HasAttributes : bool
Public Overridable ReadOnly Property HasAttributes As Boolean
Public MustOverride ReadOnly Property HasAttributes As Boolean
プロパティ値
true
現在のノードに属性がある場合は。 false
現在のノードに属性がない場合、または XPathNavigator が要素ノードに配置されていない場合は、を返します。true
if the current node has attributes; returns false
if the current node has no attributes, or if the XPathNavigator is not positioned on an element node.