<?xml version="1.0"?>
<doc>
<assembly>
<name>HtmlAgilityPack</name>
</assembly>
<members>
<member name="T:HtmlAgilityPack.Crc32">
<summary>
A utility class to compute CRC32.
</summary>
</member>
<member name="M:HtmlAgilityPack.Crc32.CRC32Bytes(System.Byte[])">
<summary>
Compute a checksum for a given array of bytes.
</summary>
<param name="bytes">The array of bytes to compute the checksum for.</param>
<returns>The computed checksum.</returns>
</member>
<member name="M:HtmlAgilityPack.Crc32.CRC32String(System.String)">
<summary>
Compute a checksum for a given string.
</summary>
<param name="text">The string to compute the checksum for.</param>
<returns>The computed checksum.</returns>
</member>
<member name="T:HtmlAgilityPack.HtmlAttribute">
<summary>
Represents an HTML attribute.
</summary>
</member>
<member name="P:HtmlAgilityPack.HtmlAttribute.Line">
<summary>
Gets the line number of this attribute in the document.
</summary>
</member>
<member name="P:HtmlAgilityPack.HtmlAttribute.LinePosition">
<summary>
Gets the column number of this attribute in the document.
</summary>
</member>
<member name="P:HtmlAgilityPack.HtmlAttribute.ValueStartIndex">
<summary>
Gets the stream position of the value of this attribute in the document, relative to the start of the document.
</summary>
</member>
<member name="P:HtmlAgilityPack.HtmlAttribute.ValueLength">
<summary>
Gets the length of the value.
</summary>
</member>
<member name="P:HtmlAgilityPack.HtmlAttribute.Name">
<summary>
Gets the qualified name of the attribute.
</summary>
</member>
<member name="P:HtmlAgilityPack.HtmlAttribute.OriginalName">
<summary>
Name of attribute with original case
</summary>
</member>
<member name="P:HtmlAgilityPack.HtmlAttribute.OwnerDocument">
<summary>
Gets the HTML document to which this attribute belongs.
</summary>
</member>
<member name="P:HtmlAgilityPack.HtmlAttribute.OwnerNode">
<summary>
Gets the HTML node to which this attribute belongs.
</summary>
</member>
<member name="P:HtmlAgilityPack.HtmlAttribute.QuoteType">
<summary>
Specifies what type of quote the data should be wrapped in
</summary>
</member>
<member name="P:HtmlAgilityPack.HtmlAttribute.StreamPosition">
<summary>
Gets the stream position of this attribute in the document, relative to the start of the document.
</summary>
</member>
<member name="P:HtmlAgilityPack.HtmlAttribute.Value">
<summary>
Gets or sets the value of the attribute.
</summary>
</member>
<member name="P:HtmlAgilityPack.HtmlAttribute.DeEntitizeValue">
<summary>
Gets the DeEntitized value of the attribute.
</summary>
</member>
<member name="P:HtmlAgilityPack.HtmlAttribute.XPath">
<summary>
Gets a valid XPath string that points to this Attribute
</summary>
</member>
<member name="M:HtmlAgilityPack.HtmlAttribute.CompareTo(System.Object)">
<summary>
Compares the current instance with another attribute. Comparison is based on attributes' name.
</summary>
<param name="obj">An attribute to compare with this instance.</param>
<returns>A 32-bit signed integer that indicates the relative order of the names comparison.</returns>
</member>
<member name="M:HtmlAgilityPack.HtmlAttribute.Clone">
<summary>
Creates a duplicate of this attribute.
</summary>
<returns>The cloned attribute.</returns>
</member>
<member name="M:HtmlAgilityPack.HtmlAttribute.Remove">
<summary>
Removes this attribute from it's parents collection
</summary>
</member>
<member name="T:HtmlAgilityPack.AttributeValueQuote">
<summary>
An Enum representing different types of Quotes used for surrounding attribute values
</summary>
</member>
<member name="F:HtmlAgilityPack.AttributeValueQuote.SingleQuote">
<summary>
A single quote mark '
</summary>
</member>
<member name="F:HtmlAgilityPack.AttributeValueQuote.DoubleQuote">
<summary>
A double quote mark "
</summary>
</member>
<member name="T:HtmlAgilityPack.HtmlAttributeCollection">
<summary>
Represents a combined list and collection of HTML nodes.
</summary>
</member>
<member name="P:HtmlAgilityPack.HtmlAttributeCollection.Count">
<summary>
Gets the number of elements actually contained in the list.
</summary>
</member>
<member name="P:HtmlAgilityPack.HtmlAttributeCollection.IsReadOnly">
<summary>
Gets readonly status of colelction
</summary>
</member>
<member name="P:HtmlAgilityPack.HtmlAttributeCollection.Item(System.Int32)">
<summary>
Gets the attribute at the specified index.
</summary>
</member>
<member name="P:HtmlAgilityPack.HtmlAttributeCollection.Item(System.String)">
<summary>
Gets a given attribute from the list using its name.
</summary>
</member>
<member name="M:HtmlAgilityPack.HtmlAttributeCollection.Add(HtmlAgilityPack.HtmlAttribute)">
<summary>
Adds supplied item to collection
</summary>
<param name="item"></param>
</member>
<member name="M:HtmlAgilityPack.HtmlAttributeCollection.System#Collections#Generic#ICollection{HtmlAgilityPack#HtmlAttribute}#Clear">
<summary>
Explicit clear
</summary>
</member>
<member name="M:HtmlAgilityPack.HtmlAttributeCollection.Contains(HtmlAgilityPack.HtmlAttribute)">
<summary>
Retreives existence of supplied item
</summary>
<param name="item"></param>
<returns></returns>
</member>
<member name="M:HtmlAgilityPack.HtmlAttributeCollection.CopyTo(HtmlAgilityPack.HtmlAttribute[],System.Int32)">
<summary>
Copies collection to array
</summary>
<param name="array"></param>
<param name="arrayIndex"></param>
</member>
<member name="M:HtmlAgilityPack.HtmlAttributeCollection.System#Collections#Generic#IEnumerable{HtmlAgilityPack#HtmlAttribute}#GetEnumerator">
<summary>
Get Explicit enumerator
</summary>
<returns></returns>
</member>
<member name="M:HtmlAgilityPack.HtmlAttributeCollection.System#Collections#IEnumerable#GetEnumerator">
<summary>
Explicit non-generic enumerator
</summary>
<returns></returns>
</member>
<member name="M:HtmlAgilityPack.HtmlAttributeCollection.IndexOf(HtmlAgilityPack