C# 클래스 Headless.XPathNavigableExtensions

The XPathNavigableExtensions class provides extension methods for the IXPathNavigable interface.
파일 보기 프로젝트 열기: roryprimrose/Headless

공개 메소드들

메소드 설명
GetNavigator ( this navigable ) : XPathNavigator

Gets the navigator.

HasAttribute ( this navigable, string name ) : bool

Determines whether the specified navigable has the specified attribute.

IsChecked ( this navigable ) : bool

Determines whether the specified navigable is checked.

IsSelected ( this navigable ) : bool

Determines whether the specified navigable is selected.

SetChecked ( this navigable, bool value ) : void

Sets the checked state of the specified navigable instance.

SetSelected ( this navigable, bool value ) : void

Sets the selected.

비공개 메소드들

메소드 설명
SetAttribute ( this navigable, string prefix, string localName, string namespaceUri, string value ) : void

메소드 상세

GetNavigator() 공개 정적인 메소드

Gets the navigator.
/// The parameter is null. /// /// The navigator could not be created. ///
public static GetNavigator ( this navigable ) : XPathNavigator
navigable this /// The navigable. ///
리턴 System.Xml.XPath.XPathNavigator

HasAttribute() 공개 정적인 메소드

Determines whether the specified navigable has the specified attribute.
public static HasAttribute ( this navigable, string name ) : bool
navigable this /// The navigable. ///
name string /// The name. ///
리턴 bool

IsChecked() 공개 정적인 메소드

Determines whether the specified navigable is checked.
public static IsChecked ( this navigable ) : bool
navigable this /// The navigable. ///
리턴 bool

IsSelected() 공개 정적인 메소드

Determines whether the specified navigable is selected.
public static IsSelected ( this navigable ) : bool
navigable this /// The navigable. ///
리턴 bool

SetChecked() 공개 정적인 메소드

Sets the checked state of the specified navigable instance.
public static SetChecked ( this navigable, bool value ) : void
navigable this /// The navigable. ///
value bool /// if set to true [value]. ///
리턴 void

SetSelected() 공개 정적인 메소드

Sets the selected.
public static SetSelected ( this navigable, bool value ) : void
navigable this /// The navigable. ///
value bool /// if set to true [value]. ///
리턴 void