docs(dotnet): fix incorrect syntax (#8801)
This commit is contained in:
parent
fb1b887135
commit
c6bb0bb44e
|
|
@ -143,7 +143,7 @@ if node:
|
||||||
|
|
||||||
## async method: Accessibility.snapshot
|
## async method: Accessibility.snapshot
|
||||||
* langs: csharp
|
* langs: csharp
|
||||||
- returns: <[JsonElement?]>
|
- returns: <[null]|[JsonElement]>
|
||||||
|
|
||||||
### option: Accessibility.snapshot.interestingOnly
|
### option: Accessibility.snapshot.interestingOnly
|
||||||
- `interestingOnly` <[boolean]>
|
- `interestingOnly` <[boolean]>
|
||||||
|
|
|
||||||
|
|
@ -43,7 +43,7 @@ This method will throw if the response body is not parsable via `JSON.parse`.
|
||||||
|
|
||||||
## async method: Response.json
|
## async method: Response.json
|
||||||
* langs: csharp
|
* langs: csharp
|
||||||
- returns: <[JsonElement?]>
|
- returns: <[null]|[JsonElement]>
|
||||||
|
|
||||||
Returns the JSON representation of response body.
|
Returns the JSON representation of response body.
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -1,6 +1,6 @@
|
||||||
## method: Request.PostDataJSON
|
## method: Request.PostDataJSON
|
||||||
* langs: csharp
|
* langs: csharp
|
||||||
- returns: <[JsonElement?]>
|
- returns: <[null]|[JsonElement]>
|
||||||
|
|
||||||
Returns parsed request's body for `form-urlencoded` and JSON as a fallback if any.
|
Returns parsed request's body for `form-urlencoded` and JSON as a fallback if any.
|
||||||
|
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue