Headless.XPathNavigableExtensions.IsChecked C# (CSharp) Метод

IsChecked() публичный статический Метод

Determines whether the specified navigable is checked.
public static IsChecked ( this navigable ) : bool
navigable this /// The navigable. ///
Результат bool
        public static bool IsChecked(this IXPathNavigable navigable)
        {
            return HasAttribute(navigable, "checked");
        }