public bool TryGetAttribute(WellknownName wellknownHtmlName, out string value) { DomAttribute found; if (this.TryGetAttribute(wellknownHtmlName, out found)) { value = found.Value; return true; } else { value = null; return false; } }
public bool TryGetAttribute(WellknownName wellknownHtmlName, out DomAttribute result) { var found = base.FindAttribute((int)wellknownHtmlName); if (found != null) { result = found; return true; } else { result = null; return false; } }
public bool TryGetAttribute(WellknownName wellknownHtmlName, out string value) { DomAttribute found; if (this.TryGetAttribute(wellknownHtmlName, out found)) { value = found.Value; return(true); } else { value = null; return(false); } }
public bool TryGetAttribute(WellknownName wellknownHtmlName, out DomAttribute result) { var found = base.FindAttribute((int)wellknownHtmlName); if (found != null) { result = found; return(true); } else { result = null; return(false); } }
public DomAttribute CreateAttribute(WellknownName attrName) { return(new DomAttribute(this, 0, (int)attrName)); }
public DomAttribute CreateAttribute(WellknownName attrName) { return new DomAttribute(this, 0, (int)attrName); }