mirror of
https://github.com/OpenAPITools/openapi-generator.git
synced 2025-12-10 01:26:16 +00:00
[csharp][generichost] Support response ranges (#19256)
* support response ranges * revert unintended change * update try deserialize methods
This commit is contained in:
@@ -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:
|
||||
|
||||
@@ -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)
|
||||
|
||||
|
||||
Reference in New Issue
Block a user