Skip to content

Commit 9a03e21

Browse files
Prepared the Aspose.HTML for .NET 25.6 release
1 parent 0ddb394 commit 9a03e21

File tree

7 files changed

+261
-39
lines changed

7 files changed

+261
-39
lines changed

english/net/aspose.html.dom.svg/svgdocument/_index.md

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -134,10 +134,17 @@ public class SVGDocument : Document, IDocumentCSS
134134
| [Navigate](../../aspose.html.dom/document/navigate/)(*[RequestMessage](../../aspose.html.net/requestmessage/)*) | Loads the document based on specified request object, replacing the previous content. |
135135
| [Navigate](../../aspose.html.dom/document/navigate/)(*string*) | Loads the document at the specified Uniform Resource Locator (URL) into the current instance, replacing the previous content. |
136136
| [Navigate](../../aspose.html.dom/document/navigate/)(*[Url](../../aspose.html/url/)*) | Loads the document at the specified Uniform Resource Locator (URL) into the current instance, replacing the previous content. |
137+
| [Navigate](../../aspose.html.dom/document/navigate/)(*[RequestMessage](../../aspose.html.net/requestmessage/), CancellationToken*) | Loads the document based on specified request object, replacing the previous content. |
137138
| [Navigate](../../aspose.html.dom/document/navigate/)(*Stream, string*) | Loads the document from specified content and using baseUri to resolve relative resources, replacing the previous content. Document loading starts from the current position in the stream. |
138139
| [Navigate](../../aspose.html.dom/document/navigate/)(*Stream, [Url](../../aspose.html/url/)*) | Loads the document from specified content and using baseUri to resolve relative resources, replacing the previous content. Document loading starts from the current position in the stream. |
140+
| [Navigate](../../aspose.html.dom/document/navigate/)(*string, CancellationToken*) | Loads the document at the specified Uniform Resource Locator (URL) into the current instance, replacing the previous content. |
139141
| [Navigate](../../aspose.html.dom/document/navigate/)(*string, string*) | Loads the document from specified content and using baseUri to resolve relative resources, replacing the previous content. |
140142
| [Navigate](../../aspose.html.dom/document/navigate/)(*string, [Url](../../aspose.html/url/)*) | Loads the document from specified content and using baseUri to resolve relative resources, replacing the previous content. |
143+
| [Navigate](../../aspose.html.dom/document/navigate/)(*[Url](../../aspose.html/url/), CancellationToken*) | Loads the document at the specified Uniform Resource Locator (URL) into the current instance, replacing the previous content. |
144+
| [Navigate](../../aspose.html.dom/document/navigate/)(*Stream, string, CancellationToken*) | Loads the document from specified content and using baseUri to resolve relative resources, replacing the previous content. Document loading starts from the current position in the stream. |
145+
| [Navigate](../../aspose.html.dom/document/navigate/)(*Stream, [Url](../../aspose.html/url/), CancellationToken*) | Loads the document from specified content and using baseUri to resolve relative resources, replacing the previous content. Document loading starts from the current position in the stream. |
146+
| [Navigate](../../aspose.html.dom/document/navigate/)(*string, string, CancellationToken*) | Loads the document from specified content and using baseUri to resolve relative resources, replacing the previous content. |
147+
| [Navigate](../../aspose.html.dom/document/navigate/)(*string, [Url](../../aspose.html/url/), CancellationToken*) | Loads the document from specified content and using baseUri to resolve relative resources, replacing the previous content. |
141148
| [Normalize](../../aspose.html.dom/node/normalize/)() | Puts all [`Text`](../../aspose.html.dom/text/) nodes in the full depth of the sub-tree underneath this Node, including attribute nodes, into a "normal" form where only structure (e.g., [`elements`](../../aspose.html.dom/element/), [`comments`](../../aspose.html.dom/comment/), [`processing instructions`](../../aspose.html.dom/processinginstruction/), [`CDATA sections`](../../aspose.html.dom/cdatasection/), and [`entity references`](../../aspose.html.dom/entityreference/)) separates [`Text`](../../aspose.html.dom/text/) nodes, i.e., there are neither adjacent Text nodes nor empty Text nodes. This can be used to ensure that the DOM view of a document is the same as if it were saved and re-loaded, and is useful when operations (such as XPointer [XPointer] lookups) that depend on a particular document tree structure are to be used. If the parameter "normalize-characters" of the [`DOMConfiguration`](../../aspose.html/configuration/) object attached to the [`Node.ownerDocument`](../../aspose.html.dom/node/ownerdocument/) is true, this method will also fully normalize the characters of the Text nodes. |
142149
| [QuerySelector](../../aspose.html.dom/document/queryselector/)(*string*) | Returns the first Element in document, which match selector |
143150
| [QuerySelectorAll](../../aspose.html.dom/document/queryselectorall/)(*string*) | Returns a NodeList of all the Elements in document, which match selector |

english/net/aspose.html.dom/document/_index.md

Lines changed: 13 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -106,12 +106,19 @@ public class Document : Node, IDocumentEvent, IDocumentStyle, IDocumentTraversal
106106
| [LookupNamespaceURI](../../aspose.html.dom/node/lookupnamespaceuri/)(*string*) | The lookupNamespaceURI() method of the Node interface takes a prefix as parameter and returns the namespace URI associated with it on the given node if found (and null if not). |
107107
| [LookupPrefix](../../aspose.html.dom/node/lookupprefix/)(*string*) | The lookupPrefix() method of the Node interface returns a String containing the prefix for a given namespace URI, if present, and null if not. When multiple prefixes are possible, the first prefix is returned. |
108108
| [Navigate](../../aspose.html.dom/document/navigate/#navigate)(*[RequestMessage](../../aspose.html.net/requestmessage/)*) | Loads the document based on specified request object, replacing the previous content. |
109-
| [Navigate](../../aspose.html.dom/document/navigate/#navigate_4)(*string*) | Loads the document at the specified Uniform Resource Locator (URL) into the current instance, replacing the previous content. |
110-
| [Navigate](../../aspose.html.dom/document/navigate/#navigate_1)(*[Url](../../aspose.html/url/)*) | Loads the document at the specified Uniform Resource Locator (URL) into the current instance, replacing the previous content. |
111-
| [Navigate](../../aspose.html.dom/document/navigate/#navigate_3)(*Stream, string*) | Loads the document from specified content and using baseUri to resolve relative resources, replacing the previous content. Document loading starts from the current position in the stream. |
112-
| [Navigate](../../aspose.html.dom/document/navigate/#navigate_2)(*Stream, [Url](../../aspose.html/url/)*) | Loads the document from specified content and using baseUri to resolve relative resources, replacing the previous content. Document loading starts from the current position in the stream. |
113-
| [Navigate](../../aspose.html.dom/document/navigate/#navigate_6)(*string, string*) | Loads the document from specified content and using baseUri to resolve relative resources, replacing the previous content. |
114-
| [Navigate](../../aspose.html.dom/document/navigate/#navigate_5)(*string, [Url](../../aspose.html/url/)*) | Loads the document from specified content and using baseUri to resolve relative resources, replacing the previous content. |
109+
| [Navigate](../../aspose.html.dom/document/navigate/#navigate_8)(*string*) | Loads the document at the specified Uniform Resource Locator (URL) into the current instance, replacing the previous content. |
110+
| [Navigate](../../aspose.html.dom/document/navigate/#navigate_2)(*[Url](../../aspose.html/url/)*) | Loads the document at the specified Uniform Resource Locator (URL) into the current instance, replacing the previous content. |
111+
| [Navigate](../../aspose.html.dom/document/navigate/#navigate_1)(*[RequestMessage](../../aspose.html.net/requestmessage/), CancellationToken*) | Loads the document based on specified request object, replacing the previous content. |
112+
| [Navigate](../../aspose.html.dom/document/navigate/#navigate_6)(*Stream, string*) | Loads the document from specified content and using baseUri to resolve relative resources, replacing the previous content. Document loading starts from the current position in the stream. |
113+
| [Navigate](../../aspose.html.dom/document/navigate/#navigate_4)(*Stream, [Url](../../aspose.html/url/)*) | Loads the document from specified content and using baseUri to resolve relative resources, replacing the previous content. Document loading starts from the current position in the stream. |
114+
| [Navigate](../../aspose.html.dom/document/navigate/#navigate_13)(*string, CancellationToken*) | Loads the document at the specified Uniform Resource Locator (URL) into the current instance, replacing the previous content. |
115+
| [Navigate](../../aspose.html.dom/document/navigate/#navigate_11)(*string, string*) | Loads the document from specified content and using baseUri to resolve relative resources, replacing the previous content. |
116+
| [Navigate](../../aspose.html.dom/document/navigate/#navigate_9)(*string, [Url](../../aspose.html/url/)*) | Loads the document from specified content and using baseUri to resolve relative resources, replacing the previous content. |
117+
| [Navigate](../../aspose.html.dom/document/navigate/#navigate_3)(*[Url](../../aspose.html/url/), CancellationToken*) | Loads the document at the specified Uniform Resource Locator (URL) into the current instance, replacing the previous content. |
118+
| [Navigate](../../aspose.html.dom/document/navigate/#navigate_7)(*Stream, string, CancellationToken*) | Loads the document from specified content and using baseUri to resolve relative resources, replacing the previous content. Document loading starts from the current position in the stream. |
119+
| [Navigate](../../aspose.html.dom/document/navigate/#navigate_5)(*Stream, [Url](../../aspose.html/url/), CancellationToken*) | Loads the document from specified content and using baseUri to resolve relative resources, replacing the previous content. Document loading starts from the current position in the stream. |
120+
| [Navigate](../../aspose.html.dom/document/navigate/#navigate_12)(*string, string, CancellationToken*) | Loads the document from specified content and using baseUri to resolve relative resources, replacing the previous content. |
121+
| [Navigate](../../aspose.html.dom/document/navigate/#navigate_10)(*string, [Url](../../aspose.html/url/), CancellationToken*) | Loads the document from specified content and using baseUri to resolve relative resources, replacing the previous content. |
115122
| [Normalize](../../aspose.html.dom/node/normalize/)() | Puts all [`Text`](../text/) nodes in the full depth of the sub-tree underneath this Node, including attribute nodes, into a "normal" form where only structure (e.g., [`elements`](../element/), [`comments`](../comment/), [`processing instructions`](../processinginstruction/), [`CDATA sections`](../cdatasection/), and [`entity references`](../entityreference/)) separates [`Text`](../text/) nodes, i.e., there are neither adjacent Text nodes nor empty Text nodes. This can be used to ensure that the DOM view of a document is the same as if it were saved and re-loaded, and is useful when operations (such as XPointer [XPointer] lookups) that depend on a particular document tree structure are to be used. If the parameter "normalize-characters" of the [`DOMConfiguration`](../../aspose.html/configuration/) object attached to the [`Node.ownerDocument`](../node/ownerdocument/) is true, this method will also fully normalize the characters of the Text nodes. |
116123
| [QuerySelector](../../aspose.html.dom/document/queryselector/)(*string*) | Returns the first Element in document, which match selector |
117124
| [QuerySelectorAll](../../aspose.html.dom/document/queryselectorall/)(*string*) | Returns a NodeList of all the Elements in document, which match selector |

0 commit comments

Comments
 (0)