Skip to content

Commit 1e5ba18

Browse files
Prepared the Aspose.HTML.Net 23.9 release
1 parent 0c8245b commit 1e5ba18

File tree

720 files changed

+2511
-754
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

720 files changed

+2511
-754
lines changed

english/net/_index.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -12,6 +12,8 @@ is_root: true
1212
| Namespace | Description |
1313
| --- | --- |
1414
| [Aspose.Html](./aspose.html/) | The Aspose.Html namespace contains classes and methods to manipulate [`HTML documents`](aspose.html/htmldocument/), whether simple or complex and on the fly. Aspose.HTML for .NET allows developers to Insert, Remove, Replace HTML nodes, extract CSS style information, Navigate through [`HTML document`](aspose.html/htmldocument/) either by [`NodeIterator`](aspose.html.dom.traversal/inodeiterator/), [`TreeWalker`](aspose.html.dom.traversal/itreewalker/) that are provided by Traversal Specifications, XPath or CSS selector queries. It also offers the scripting which allows to manipulate HTML DOM via JavaScript. As well as HTML, this API also provides the capabilities to load EPUB and MHTML. Aspose APIs are famous for their inter file format conversion features and this API also provides the capabilities to load HTML file and render the output in PDF, XPS and raster image formats including JPEG, PNG, BMP and TIFF. |
15+
| [Aspose.Html.Accessibility](./aspose.html.accessibility/) | The **Aspose.Html.Dom.Accessibility** namespace is for all Web Accessibility related manipulations. complies with international standards W3C Web Accessibility Initiative |
16+
| [Aspose.Html.Accessibility.Results](./aspose.html.accessibility.results/) | The **Aspose.Html.Accessibility.Results** namespace contains classes that describe the results of rule validation |
1517
| [Aspose.Html.Collections](./aspose.html.collections/) | The **Aspose.Html.Collections** namespace consists of classes to represent, store and manipulate nodes and elements. |
1618
| [Aspose.Html.Converters](./aspose.html.converters/) | The **Aspose.Html.Converters** namespace goal is easy access to conversion methods. It provides a wide range of conversions to the popular formats, such as PDF, XPS, image formats, etc. More specific conversion (rendering, saving) user cases are presented by well known and documented low level API functions in subject oriented namespaces. |
1719
| [Aspose.Html.Diagnostics](./aspose.html.diagnostics/) | The **Aspose.Html.Diagnostics** namespace contains interfaces for working with metrics and collecting logs and traces. |
Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,16 @@
1+
---
2+
title: Aspose.Html.Accessibility.Results
3+
second_title: Aspose.HTML for .NET API Reference
4+
description: The Aspose.Html.Accessibility.Results namespace contains classes that describe the results of rule validation
5+
type: docs
6+
weight: 30
7+
url: /net/aspose.html.accessibility.results/
8+
---
9+
The **Aspose.Html.Accessibility.Results** namespace contains classes that describe the results of rule validation
10+
11+
## Classes
12+
13+
| Class | Description |
14+
| --- | --- |
15+
| [CriterionResult](./criterionresult/) | Class - result of criteria check, contains a list of method Results, which are ways to satisfy the success criteria. |
16+
| [ValidationResult](./validationresult/) | The main result class, that contains Results for all Criterion from AccessibilityRules object. |
Lines changed: 30 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,30 @@
1+
---
2+
title: CriterionResult Class
3+
second_title: Aspose.HTML for .NET API Reference
4+
description: Aspose.Html.Accessibility.Results.CriterionResult class. Class - result of criteria check contains a list of method Results which are ways to satisfy the success criteria
5+
type: docs
6+
weight: 90
7+
url: /net/aspose.html.accessibility.results/criterionresult/
8+
---
9+
## CriterionResult class
10+
11+
Class - result of criteria check, contains a list of method Results, which are ways to satisfy the success criteria.
12+
13+
```csharp
14+
public class CriterionResult
15+
```
16+
17+
## Properties
18+
19+
| Name | Description |
20+
| --- | --- |
21+
| [Errors](../../aspose.html.accessibility.results/criterionresult/errors/) { get; } | Collection of results with Errors |
22+
| [Results](../../aspose.html.accessibility.results/criterionresult/results/) { get; } | Collection of Result on criterion validation |
23+
| [Rule](../../aspose.html.accessibility.results/criterionresult/rule/) { get; } | Criterion that has been tested |
24+
| [Success](../../aspose.html.accessibility.results/criterionresult/success/) { get; } | Returns result of the criterion. |
25+
| [Warnings](../../aspose.html.accessibility.results/criterionresult/warnings/) { get; } | Collection of results with Warnings |
26+
27+
### See Also
28+
29+
* namespace [Aspose.Html.Accessibility.Results](../../aspose.html.accessibility.results/)
30+
* assembly [Aspose.HTML](../../)
Lines changed: 22 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,22 @@
1+
---
2+
title: CriterionResult.Errors
3+
second_title: Aspose.HTML for .NET API Reference
4+
description: CriterionResult property. Collection of results with Errors
5+
type: docs
6+
weight: 10
7+
url: /net/aspose.html.accessibility.results/criterionresult/errors/
8+
---
9+
## CriterionResult.Errors property
10+
11+
Collection of results with Errors
12+
13+
```csharp
14+
public IList<IRuleResult> Errors { get; }
15+
```
16+
17+
### See Also
18+
19+
* interface [IRuleResult](../../../aspose.html.accessibility/iruleresult/)
20+
* class [CriterionResult](../)
21+
* namespace [Aspose.Html.Accessibility.Results](../../../aspose.html.accessibility.results/)
22+
* assembly [Aspose.HTML](../../../)
Lines changed: 22 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,22 @@
1+
---
2+
title: CriterionResult.Results
3+
second_title: Aspose.HTML for .NET API Reference
4+
description: CriterionResult property. Collection of Result on criterion validation
5+
type: docs
6+
weight: 20
7+
url: /net/aspose.html.accessibility.results/criterionresult/results/
8+
---
9+
## CriterionResult.Results property
10+
11+
Collection of Result on criterion validation
12+
13+
```csharp
14+
public IList<IRuleResult> Results { get; }
15+
```
16+
17+
### See Also
18+
19+
* interface [IRuleResult](../../../aspose.html.accessibility/iruleresult/)
20+
* class [CriterionResult](../)
21+
* namespace [Aspose.Html.Accessibility.Results](../../../aspose.html.accessibility.results/)
22+
* assembly [Aspose.HTML](../../../)
Lines changed: 22 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,22 @@
1+
---
2+
title: CriterionResult.Rule
3+
second_title: Aspose.HTML for .NET API Reference
4+
description: CriterionResult property. Criterion that has been tested
5+
type: docs
6+
weight: 30
7+
url: /net/aspose.html.accessibility.results/criterionresult/rule/
8+
---
9+
## CriterionResult.Rule property
10+
11+
Criterion that has been tested
12+
13+
```csharp
14+
public IRule Rule { get; }
15+
```
16+
17+
### See Also
18+
19+
* interface [IRule](../../../aspose.html.accessibility/irule/)
20+
* class [CriterionResult](../)
21+
* namespace [Aspose.Html.Accessibility.Results](../../../aspose.html.accessibility.results/)
22+
* assembly [Aspose.HTML](../../../)
Lines changed: 21 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,21 @@
1+
---
2+
title: CriterionResult.Success
3+
second_title: Aspose.HTML for .NET API Reference
4+
description: CriterionResult property. Returns result of the criterion
5+
type: docs
6+
weight: 40
7+
url: /net/aspose.html.accessibility.results/criterionresult/success/
8+
---
9+
## CriterionResult.Success property
10+
11+
Returns result of the criterion.
12+
13+
```csharp
14+
public bool Success { get; }
15+
```
16+
17+
### See Also
18+
19+
* class [CriterionResult](../)
20+
* namespace [Aspose.Html.Accessibility.Results](../../../aspose.html.accessibility.results/)
21+
* assembly [Aspose.HTML](../../../)
Lines changed: 22 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,22 @@
1+
---
2+
title: CriterionResult.Warnings
3+
second_title: Aspose.HTML for .NET API Reference
4+
description: CriterionResult property. Collection of results with Warnings
5+
type: docs
6+
weight: 50
7+
url: /net/aspose.html.accessibility.results/criterionresult/warnings/
8+
---
9+
## CriterionResult.Warnings property
10+
11+
Collection of results with Warnings
12+
13+
```csharp
14+
public IList<IRuleResult> Warnings { get; }
15+
```
16+
17+
### See Also
18+
19+
* interface [IRuleResult](../../../aspose.html.accessibility/iruleresult/)
20+
* class [CriterionResult](../)
21+
* namespace [Aspose.Html.Accessibility.Results](../../../aspose.html.accessibility.results/)
22+
* assembly [Aspose.HTML](../../../)
Lines changed: 27 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,27 @@
1+
---
2+
title: ValidationResult Class
3+
second_title: Aspose.HTML for .NET API Reference
4+
description: Aspose.Html.Accessibility.Results.ValidationResult class. The main result class that contains Results for all Criterion from AccessibilityRules object
5+
type: docs
6+
weight: 100
7+
url: /net/aspose.html.accessibility.results/validationresult/
8+
---
9+
## ValidationResult class
10+
11+
The main result class, that contains Results for all Criterion from AccessibilityRules object.
12+
13+
```csharp
14+
public class ValidationResult
15+
```
16+
17+
## Properties
18+
19+
| Name | Description |
20+
| --- | --- |
21+
| [Details](../../aspose.html.accessibility.results/validationresult/details/) { get; } | Validation result details |
22+
| [Success](../../aspose.html.accessibility.results/validationresult/success/) { get; } | The result of validation. |
23+
24+
### See Also
25+
26+
* namespace [Aspose.Html.Accessibility.Results](../../aspose.html.accessibility.results/)
27+
* assembly [Aspose.HTML](../../)
Lines changed: 22 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,22 @@
1+
---
2+
title: ValidationResult.Details
3+
second_title: Aspose.HTML for .NET API Reference
4+
description: ValidationResult property. Validation result details
5+
type: docs
6+
weight: 10
7+
url: /net/aspose.html.accessibility.results/validationresult/details/
8+
---
9+
## ValidationResult.Details property
10+
11+
Validation result details
12+
13+
```csharp
14+
public IList<CriterionResult> Details { get; }
15+
```
16+
17+
### See Also
18+
19+
* class [CriterionResult](../../criterionresult/)
20+
* class [ValidationResult](../)
21+
* namespace [Aspose.Html.Accessibility.Results](../../../aspose.html.accessibility.results/)
22+
* assembly [Aspose.HTML](../../../)

0 commit comments

Comments
 (0)