api(dotnet): remove serializer options (#6641)

This commit is contained in:
Pavel Feldman 2021-05-18 10:55:03 -07:00 committed by GitHub
parent 345f7da573
commit 36c0765c98
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 1 additions and 6 deletions

View File

@ -7,12 +7,6 @@ Returns parsed request's body for `form-urlencoded` and JSON as a fallback if an
When the response is `application/x-www-form-urlencoded` then a key/value object of the values will be returned.
Otherwise it will be parsed as JSON.
### param: Request.PostDataJSON.serializerOptions
* langs: csharp
- `documentOptions` <[null]|[JsonDocumentOptions]>
Optional Json options that control custom behaviour when parsing the JSON.
### param: ElementHandle.selectOption.values = %%-csharp-select-options-values-%%
### param: ElementHandle.setInputFiles.files = %%-csharp-input-files-%%

View File

@ -468,6 +468,7 @@ function renderMethod(member, parent, name, out) {
if (member.args.size == 0
&& type !== 'void'
&& !name.startsWith('Get')
&& !name.startsWith('PostDataJSON')
&& !name.startsWith('As')) {
if (!member.async) {
if (member.spec)