Skip to content

Commit

Permalink
Update dlls
Browse files Browse the repository at this point in the history
  • Loading branch information
jamietre committed Mar 11, 2013
1 parent 4b43f93 commit 9d72a73
Show file tree
Hide file tree
Showing 4 changed files with 118 additions and 106 deletions.
222 changes: 117 additions & 105 deletions distribution/CsQuery.XML
Original file line number Diff line number Diff line change
Expand Up @@ -5974,10 +5974,13 @@
<member name="P:CsQuery.IDomObject.InnerText">
<summary>
Gets or sets the text content of a node and its descendants, formatted like Chrome (a new
line for each text node, a space between inline elements, a new line for block elements). The
contents of comments, CDATA nodes, SCRIPT, STYLE and TEXTAREA nodes are ignored. Note: this
is an IE property; there is no standard. The way CsQuery formats using InnerText is roughly
like Chrome but may not match exactly.
line for each text node, a space between inline elements, a new line for block elements).
Unlike browsers, the contents of hidden elements are included, since we cannot determine
conclusively what is hidden.

The contents of comments, CDATA nodes, SCRIPT, STYLE and TEXTAREA nodes are ignored. Note:
this is an IE property; there is no standard. The way CsQuery formats using InnerText is
roughly like Chrome but may not match exactly.
</summary>

<url>
Expand Down Expand Up @@ -7488,49 +7491,6 @@
A new element that inherits DomElement
</returns>
</member>
<member name="M:CsQuery.Implementation.DomElement.GetTextContent(System.Collections.Generic.IEnumerable{CsQuery.IDomObject})">
<summary>
Helper for public Text() function to act recursively.
</summary>

<param name="sb">
A stringbuilder
</param>
<param name="nodes">
The nodes to access innnerText from
</param>
</member>
<member name="M:CsQuery.Implementation.DomElement.GetInnerText(System.Collections.Generic.IEnumerable{CsQuery.IDomObject})">
<summary>
Enumerates get inner text in this collection

Rules:

All whitespace between text or inline nodes is coalesced to a single whitespace.
A block node starts a new line.
Leading and trailing whitespace is omitted.
</summary>

<param name="nodes">
The nodes to access innnerText from.
</param>

<returns>
An enumerator that allows foreach to be used to process get inner text in this collection.
</returns>
</member>
<member name="M:CsQuery.Implementation.DomElement.AddOwnText_TextContent(System.Collections.Generic.List{System.String},CsQuery.IDomObject)">
<summary>
Get the text contents o
</summary>

<param name="sb">
The StribgBuilder object to write to
</param>
<param name="obj">
The object.
</param>
</member>
<member name="M:CsQuery.Implementation.DomElement.ElementHtml">
<summary>
Returns the HTML for this element, but ignoring children/innerHTML.
Expand Down Expand Up @@ -7883,6 +7843,49 @@
the correct format, an error will be thrown.
</param>
</member>
<member name="M:CsQuery.Implementation.DomElement.GetTextContent(System.Collections.Generic.IEnumerable{CsQuery.IDomObject})">
<summary>
Helper for public Text() function to act recursively.
</summary>

<param name="sb">
A stringbuilder
</param>
<param name="nodes">
The nodes to access innnerText from
</param>
</member>
<member name="M:CsQuery.Implementation.DomElement.GetInnerText(System.Collections.Generic.IEnumerable{CsQuery.IDomObject})">
<summary>
Enumerates get inner text in this collection

Rules:

All whitespace between text or inline nodes is coalesced to a single whitespace.
A block node starts a new line.
Leading and trailing whitespace is omitted.
</summary>

<param name="nodes">
The nodes to access innnerText from.
</param>

<returns>
An enumerator that allows foreach to be used to process get inner text in this collection.
</returns>
</member>
<member name="M:CsQuery.Implementation.DomElement.AddOwnText_TextContent(System.Collections.Generic.List{System.String},CsQuery.IDomObject)">
<summary>
Get the text contents o
</summary>

<param name="sb">
The StribgBuilder object to write to
</param>
<param name="obj">
The object.
</param>
</member>
<member name="M:CsQuery.Implementation.DomElement.AttributeIndexKey(System.String)">
<summary>
Attribute index key.
Expand Down Expand Up @@ -8262,10 +8265,13 @@
<member name="P:CsQuery.Implementation.DomElement.InnerText">
<summary>
Gets or sets the text content of a node and its descendants, formatted like Chrome (a new
line for each text node, a space between inline elements, a new line for block elements). The
contents of comments, CDATA nodes, SCRIPT, STYLE and TEXTAREA nodes are ignored. Note: this
is an IE property; there is no standard. The way CsQuery formats using InnerText is roughly
like Chrome but may not match exactly.
line for each text node, a space between inline elements, a new line for block elements).
Unlike browsers, the contents of hidden elements are included, since we cannot determine
conclusively what is hidden.

The contents of comments, CDATA nodes, SCRIPT, STYLE and TEXTAREA nodes are ignored. Note:
this is an IE property; there is no standard. The way CsQuery formats using InnerText is
roughly like Chrome but may not match exactly.
</summary>

<url>
Expand Down Expand Up @@ -9762,6 +9768,24 @@
Logic: if nothing specifically selected, find the first enabled option, otherwise, the first disabled option.
</summary>
</member>
<member name="T:CsQuery.Engine.IDomIndexSimple">
<summary>
Interface for a DOM index that is queryable.
</summary>
</member>
<member name="M:CsQuery.Engine.IDomIndexSimple.QueryIndex(System.UInt16[])">
<summary>
Queries the index.
</summary>

<param name="subKey">
The sub key.
</param>

<returns>
An enumerator that allows foreach to be used to process query index in this collection.
</returns>
</member>
<member name="T:CsQuery.Engine.DomIndexNone">
<summary>
Simple implementation of DOM index that only stores a reference to the index target. This
Expand Down Expand Up @@ -9816,48 +9840,11 @@
The element.
</param>
</member>
<member name="M:CsQuery.Engine.IDomIndex.QueryIndex(System.UInt16[])">
<summary>
Queries the index.
</summary>

<param name="subKey">
The sub key.
</param>

<returns>
An enumerator that allows foreach to be used to process query index in this collection.
</returns>
</member>
<member name="M:CsQuery.Engine.IDomIndex.Clear">
<summary>
Clears this object to its blank/initial state.
</summary>
</member>
<member name="M:CsQuery.Engine.IDomIndex.QueryIndex(System.UInt16[],System.Int32,System.Boolean)">
<summary>
Queries the index, returning all matching elements
</summary>

<param name="subKey">
The sub key.
</param>
<param name="depth">
The depth.
</param>
<param name="includeDescendants">
true to include, false to exclude the descendants.
</param>

<returns>
An enumerator that allows foreach to be used to process query index in this collection.
</returns>
</member>
<member name="P:CsQuery.Engine.IDomIndex.Features">
<summary>
Returns the features that this index implements
</summary>
</member>
<member name="P:CsQuery.Engine.IDomIndex.Count">
<summary>
The number of unique index keys
Expand All @@ -9867,11 +9854,6 @@
The count of items in the index
</returns>
</member>
<member name="P:CsQuery.Engine.IDomIndex.QueueChanges">
<summary>
When true, changes are queued until the next read operation
</summary>
</member>
<member name="M:CsQuery.Engine.DomIndexNone.#ctor">
<summary>
Default constructor for the index
Expand Down Expand Up @@ -9979,6 +9961,40 @@
When true, changes are queued until the next read operation. For the DomIndexNone provider, this is always false.
</summary>
</member>
<member name="T:CsQuery.Engine.IDomIndexRanged">
<summary>
Interface for a DOM index that can be queried for a range of elements
</summary>
</member>
<member name="M:CsQuery.Engine.IDomIndexRanged.QueryIndex(System.UInt16[],System.Int32,System.Boolean)">
<summary>
Queries the index, returning all matching elements
</summary>

<param name="subKey">
The sub key.
</param>
<param name="depth">
The depth.
</param>
<param name="includeDescendants">
true to include, false to exclude the descendants.
</param>

<returns>
An enumerator that allows foreach to be used to process query index in this collection.
</returns>
</member>
<member name="T:CsQuery.Engine.IDomIndexQueue">
<summary>
Interface for a DOM index that contains a Queue feature.
</summary>
</member>
<member name="P:CsQuery.Engine.IDomIndexQueue.QueueChanges">
<summary>
When true, changes are queued until the next read operation
</summary>
</member>
<member name="T:CsQuery.DomIndexProviders">
<summary>
The default DomIndexProvider.
Expand Down Expand Up @@ -10164,11 +10180,6 @@
The count of items in the index.
</returns>
</member>
<member name="P:CsQuery.Engine.DomIndexSimple.Features">
<summary>
Returns the features that this index implements.
</summary>
</member>
<member name="P:CsQuery.Engine.DomIndexSimple.QueueChanges">
<summary>
When true, changes are queued until the next read operation. For the SimpleIndex provider,
Expand Down Expand Up @@ -10373,11 +10384,6 @@
The count of items in the index.
</returns>
</member>
<member name="P:CsQuery.Engine.DomIndexRanged.Features">
<summary>
Returns the features that this index implements.
</summary>
</member>
<member name="T:CsQuery.Implementation.AttributeCollection">
<summary>
A collection of attributes.
Expand Down Expand Up @@ -14237,12 +14243,12 @@
Element factory to build a CsQuery DOM using HtmlParserSharp.
</summary>
</member>
<member name="F:CsQuery.HtmlParser.ElementFactory.tokenizerBlockSize">
<member name="F:CsQuery.HtmlParser.ElementFactory.tokenizerBlockChars">
<summary>
Size of the blocks to read from the input stream (char[] = 2x bytes)
</summary>
</member>
<member name="F:CsQuery.HtmlParser.ElementFactory.preprocessorBlockSize">
<member name="F:CsQuery.HtmlParser.ElementFactory.preprocessorBlockBytes">
<summary>
Size of the preprocessor block; the maximum number of bytes in which the character set
encoding can be changed. This must be at least as large (IN BYTES!) as the tokenizer block or the
Expand Down Expand Up @@ -14387,6 +14393,12 @@
Encoding detected event information.
</param>
</member>
<member name="M:CsQuery.HtmlParser.ElementFactory.CheckForReEncode">
<summary>
If a new character set encoding was declared and it's too late to change, switch to the new
one midstream.
</summary>
</member>
<member name="M:CsQuery.HtmlParser.ElementFactory.ConfigureDefaultContextMap">
<summary>
Configure default context: creates a default context for arbitrary fragments so they are valid no matter what,
Expand Down
Binary file modified distribution/CsQuery.dll
Binary file not shown.
Binary file modified distribution/CsQuery.pdb
Binary file not shown.
2 changes: 1 addition & 1 deletion source/CsQuery/Properties/AssemblyInfo.cs
Original file line number Diff line number Diff line change
Expand Up @@ -33,6 +33,6 @@
// by using the '*' as shown below:
// [assembly: AssemblyVersion("1.0.*")]

[assembly: AssemblyVersion("1.3.5.54")]
[assembly: AssemblyVersion("1.3.5.55")]
//[assembly: AssemblyFileVersion("1.3.3")]

0 comments on commit 9d72a73

Please sign in to comment.