docs(dotnet): fix incorrect syntax (#8801)

This commit is contained in:
Anže Vodovnik 2021-09-09 11:39:26 +02:00 committed by GitHub
parent fb1b887135
commit c6bb0bb44e
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
3 changed files with 3 additions and 3 deletions

View File

@ -143,7 +143,7 @@ if node:
## async method: Accessibility.snapshot
* langs: csharp
- returns: <[JsonElement?]>
- returns: <[null]|[JsonElement]>
### option: Accessibility.snapshot.interestingOnly
- `interestingOnly` <[boolean]>

View File

@ -43,7 +43,7 @@ This method will throw if the response body is not parsable via `JSON.parse`.
## async method: Response.json
* langs: csharp
- returns: <[JsonElement?]>
- returns: <[null]|[JsonElement]>
Returns the JSON representation of response body.

View File

@ -1,6 +1,6 @@
## method: Request.PostDataJSON
* langs: csharp
- returns: <[JsonElement?]>
- returns: <[null]|[JsonElement]>
Returns parsed request's body for `form-urlencoded` and JSON as a fallback if any.