Skip to content

Commit

Permalink
Update README.md: Cookies escaping values
Browse files Browse the repository at this point in the history
  • Loading branch information
grandsilence committed Jan 31, 2019
1 parent 4cbf65d commit 57e7fcf
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,11 @@ HttpRequest.UseCookies = false;
```
Cookies now escaping values. If you wait to disable it use:
```csharp
HttpRequest.Cookies =
HttpRequest.Cookies.EscapeValuesOnReceive = false;

// UnescapeValuesOnSend by default = EscapeValuesOnReceive
// so set if to false isn't necessary
HttpRequest.Cookies.UnescapeValuesOnSend = false;
```

### Modern User-Agent Randomization
Expand Down

0 comments on commit 57e7fcf

Please sign in to comment.