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: README.md
+62Lines changed: 62 additions & 0 deletions
Original file line number
Diff line number
Diff line change
@@ -14,6 +14,8 @@ AngleSharp.Io extends AngleSharp with powerful requesters, caching mechanisms, a
14
14
15
15
## Basic Configuration
16
16
17
+
### Requesters
18
+
17
19
If you just want to use *all* available requesters provided by AngleSharp.Io you can do the following:
18
20
19
21
```cs
@@ -24,6 +26,64 @@ var config = Configuration.Default
24
26
25
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`.
26
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:
0 commit comments