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
AngleSharp.Io extends AngleSharp with powerful requesters, caching mechanisms, and storage systems. It is coupled more strongly to the underlying operating system than AngleSharp itself. Therefore it has stronger dependencies and demands and cannot be released for the standard framework (4.6). Nevertheless, it is released as a .NET Standard 2.0 library.
13
14
14
15
## Basic Configuration
15
16
17
+
### Requesters
18
+
16
19
If you just want to use *all* available requesters provided by AngleSharp.Io you can do the following:
17
20
18
21
```cs
@@ -23,6 +26,64 @@ var config = Configuration.Default
23
26
24
27
This will register all requesters. Alternatively, the requesters can be provided explicitly. They are located in the `AngleSharp.Io.Network` namespace and have names such as `DataRequester`.
25
28
29
+
### Cookies
30
+
31
+
To get improved cookie support, e.g., do
32
+
33
+
```cs
34
+
varconfig=Configuration.Default
35
+
.WithTemporaryCookies(); // Uses memory cookies
36
+
```
37
+
38
+
or if you want to have persistent cookies you can use:
- Enhanced download capabilities for resources / links
36
99
37
100
## Participating
38
101
39
102
Participation in the project is highly welcome. For this project the same rules as for the AngleSharp core project may be applied.
40
103
41
104
If you have any question, concern, or spot an issue then please report it before opening a pull request. An initial discussion is appreciated regardless of the nature of the problem.
42
105
106
+
Live discussions can take place in our [Gitter chat](https://gitter.im/AngleSharp/AngleSharp), which supports using GitHub accounts.
107
+
108
+
This project has adopted the code of conduct defined by the Contributor Covenant to clarify expected behavior in our community.
109
+
110
+
For more information see the [.NET Foundation Code of Conduct](https://dotnetfoundation.org/code-of-conduct).
111
+
112
+
## .NET Foundation
113
+
114
+
This project is supported by the [.NET Foundation](https://dotnetfoundation.org).
0 commit comments