[csharp][generichost] Support response ranges (#19256)

* support response ranges

* revert unintended change

* update try deserialize methods
This commit is contained in:
devhl-labs
2024-07-29 04:33:27 -04:00
committed by GitHub
parent 2958107a6a
commit 755b2efee4
38 changed files with 457 additions and 1 deletions

View File

@@ -138,6 +138,8 @@ paths:
type: array
style: form
responses:
"2XX":
description: Anything within 200-299
"200":
content:
application/xml:
@@ -153,6 +155,8 @@ paths:
description: successful operation
"400":
description: Invalid status value
"4XX":
description: Anything within 400-499
security:
- http_signature_test: []
- petstore_auth:

View File

@@ -284,6 +284,8 @@ catch (ApiException e)
|-------------|-------------|------------------|
| **200** | successful operation | - |
| **400** | Invalid status value | - |
| **2XX** | Anything within 200-299 | - |
| **4XX** | Anything within 400-499 | - |
[[Back to top]](#) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to Model list]](../README.md#documentation-for-models) [[Back to README]](../README.md)