You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: english/net/aspose.html.dom.svg/svgdocument/_index.md
+7Lines changed: 7 additions & 0 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -134,10 +134,17 @@ public class SVGDocument : Document, IDocumentCSS
134
134
| [Navigate](../../aspose.html.dom/document/navigate/)(*[RequestMessage](../../aspose.html.net/requestmessage/)*) | Loads the document based on specified request object, replacing the previous content. |
135
135
| [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. |
136
136
| [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. |
137
138
| [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. |
138
139
| [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. |
139
141
| [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. |
140
142
| [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. |
141
148
| [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. |
142
149
| [QuerySelector](../../aspose.html.dom/document/queryselector/)(*string*) | Returns the first Element in document, which match selector |
143
150
| [QuerySelectorAll](../../aspose.html.dom/document/queryselectorall/)(*string*) | Returns a NodeList of all the Elements in document, which match selector |
Copy file name to clipboardExpand all lines: english/net/aspose.html.dom/document/_index.md
+13-6Lines changed: 13 additions & 6 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -106,12 +106,19 @@ public class Document : Node, IDocumentEvent, IDocumentStyle, IDocumentTraversal
106
106
| [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). |
107
107
| [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. |
108
108
| [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. |
115
122
| [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. |
116
123
| [QuerySelector](../../aspose.html.dom/document/queryselector/)(*string*) | Returns the first Element in document, which match selector |
117
124
| [QuerySelectorAll](../../aspose.html.dom/document/queryselectorall/)(*string*) | Returns a NodeList of all the Elements in document, which match selector |
0 commit comments