Method | Description | |
---|---|---|
AddPetAsync ( |
Add a new pet to the store
|
|
AddPetAsync ( |
Add a new pet to the store
|
|
CreateUserAsync ( |
Create user
|
|
CreateUserAsync ( |
Create user
|
|
CreateUsersWithArrayInputAsync ( System |
Creates list of users with given input array
|
|
CreateUsersWithArrayInputAsync ( System |
Creates list of users with given input array
|
|
CreateUsersWithListInputAsync ( System |
Creates list of users with given input array
|
|
CreateUsersWithListInputAsync ( System |
Creates list of users with given input array
|
|
DeleteOrderAsync ( int orderId ) : System.Threading.Tasks.Task |
Delete purchase order by ID
|
|
DeleteOrderAsync ( int orderId, System cancellationToken ) : System.Threading.Tasks.Task |
Delete purchase order by ID
|
|
DeletePetAsync ( string api_key, int petId ) : System.Threading.Tasks.Task |
Deletes a pet
|
|
DeletePetAsync ( string api_key, int petId, System cancellationToken ) : System.Threading.Tasks.Task |
Deletes a pet
|
|
DeleteUserAsync ( string username ) : System.Threading.Tasks.Task |
Delete user
|
|
DeleteUserAsync ( string username, System cancellationToken ) : System.Threading.Tasks.Task |
Delete user
|
|
FindPetsByStatusAsync ( System |
Finds Pets by status
|
|
FindPetsByStatusAsync ( System |
Finds Pets by status
|
|
GetInventoryAsync ( ) : int>>.System.Threading.Tasks.Task |
Returns pet inventories by status
|
|
GetInventoryAsync ( System cancellationToken ) : int>>.System.Threading.Tasks.Task |
Returns pet inventories by status
|
|
GetOrderByIdAsync ( int orderId ) : System.Threading.Tasks.Task |
Find purchase order by ID
|
|
GetOrderByIdAsync ( int orderId, System cancellationToken ) : System.Threading.Tasks.Task |
Find purchase order by ID
|
|
GetPetByIdAsync ( int petId ) : System.Threading.Tasks.Task |
Find pet by ID
|
|
GetPetByIdAsync ( int petId, System cancellationToken ) : System.Threading.Tasks.Task |
Find pet by ID
|
|
GetUserByNameAsync ( string username ) : System.Threading.Tasks.Task |
Get user by user name
|
|
GetUserByNameAsync ( string username, System cancellationToken ) : System.Threading.Tasks.Task |
Get user by user name
|
|
LoginUserAsync ( string username, string password ) : System.Threading.Tasks.Task |
Logs user into the system
|
|
LoginUserAsync ( string username, string password, System cancellationToken ) : System.Threading.Tasks.Task |
Logs user into the system
|
|
LogoutUserAsync ( ) : System.Threading.Tasks.Task |
Logs out current logged in user session
|
|
LogoutUserAsync ( System cancellationToken ) : System.Threading.Tasks.Task |
Logs out current logged in user session
|
|
PlaceOrderAsync ( |
Place an order for a pet
|
|
PlaceOrderAsync ( |
Place an order for a pet
|
|
UpdatePetAsync ( |
Update an existing pet
|
|
UpdatePetAsync ( |
Update an existing pet
|
|
UpdatePetWithFormAsync ( int petId, string name, string status ) : System.Threading.Tasks.Task |
Updates a pet in the store with form data
|
|
UpdatePetWithFormAsync ( int petId, string name, string status, System cancellationToken ) : System.Threading.Tasks.Task |
Updates a pet in the store with form data
|
|
UpdateUserAsync ( string username, |
Updated user
|
|
UpdateUserAsync ( string username, |
Updated user
|
|
UploadFileAsync ( int petId, string additionalMetadata, |
uploads an image
|
|
UploadFileAsync ( int petId, string additionalMetadata, |
uploads an image
|
Method | Description | |
---|---|---|
FindPetsByTagsAsync ( System |
||
FindPetsByTagsAsync ( System |
||
PrepareRequest ( System request, string &url ) : void | ||
ProcessResponse ( System request, System response ) : void |
public AddPetAsync ( |
||
body | Pet object that needs to be added to the store | |
return | System.Threading.Tasks.Task |
public AddPetAsync ( |
||
body | Pet object that needs to be added to the store | |
cancellationToken | System | A cancellation token that can be used by other objects or threads to receive notice of cancellation. |
return | System.Threading.Tasks.Task |
public CreateUserAsync ( |
||
body | Created user object | |
return | System.Threading.Tasks.Task |
public CreateUserAsync ( |
||
body | Created user object | |
cancellationToken | System | A cancellation token that can be used by other objects or threads to receive notice of cancellation. |
return | System.Threading.Tasks.Task |
public CreateUsersWithArrayInputAsync ( System |
||
body | System |
List of user object |
return | System.Threading.Tasks.Task |
public CreateUsersWithArrayInputAsync ( System |
||
body | System |
List of user object |
cancellationToken | System | A cancellation token that can be used by other objects or threads to receive notice of cancellation. |
return | System.Threading.Tasks.Task |
public CreateUsersWithListInputAsync ( System |
||
body | System |
List of user object |
return | System.Threading.Tasks.Task |
public CreateUsersWithListInputAsync ( System |
||
body | System |
List of user object |
cancellationToken | System | A cancellation token that can be used by other objects or threads to receive notice of cancellation. |
return | System.Threading.Tasks.Task |
public DeleteOrderAsync ( int orderId ) : System.Threading.Tasks.Task | ||
orderId | int | ID of the order that needs to be deleted |
return | System.Threading.Tasks.Task |
public DeleteOrderAsync ( int orderId, System cancellationToken ) : System.Threading.Tasks.Task | ||
orderId | int | ID of the order that needs to be deleted |
cancellationToken | System | A cancellation token that can be used by other objects or threads to receive notice of cancellation. |
return | System.Threading.Tasks.Task |
public DeletePetAsync ( string api_key, int petId ) : System.Threading.Tasks.Task | ||
api_key | string | |
petId | int | Pet id to delete |
return | System.Threading.Tasks.Task |
public DeletePetAsync ( string api_key, int petId, System cancellationToken ) : System.Threading.Tasks.Task | ||
api_key | string | |
petId | int | Pet id to delete |
cancellationToken | System | A cancellation token that can be used by other objects or threads to receive notice of cancellation. |
return | System.Threading.Tasks.Task |
public DeleteUserAsync ( string username ) : System.Threading.Tasks.Task | ||
username | string | The name that needs to be deleted |
return | System.Threading.Tasks.Task |
public DeleteUserAsync ( string username, System cancellationToken ) : System.Threading.Tasks.Task | ||
username | string | The name that needs to be deleted |
cancellationToken | System | A cancellation token that can be used by other objects or threads to receive notice of cancellation. |
return | System.Threading.Tasks.Task |
public FindPetsByStatusAsync ( System |
||
status | System |
Status values that need to be considered for filter |
return | System.Threading.Tasks.Task |
public FindPetsByStatusAsync ( System |
||
status | System |
Status values that need to be considered for filter |
cancellationToken | System | A cancellation token that can be used by other objects or threads to receive notice of cancellation. |
return | System.Threading.Tasks.Task |
public GetInventoryAsync ( ) : int>>.System.Threading.Tasks.Task |
||
return | int>>.System.Threading.Tasks.Task |
public GetInventoryAsync ( System cancellationToken ) : int>>.System.Threading.Tasks.Task |
||
cancellationToken | System | A cancellation token that can be used by other objects or threads to receive notice of cancellation. |
return | int>>.System.Threading.Tasks.Task |
public GetOrderByIdAsync ( int orderId ) : System.Threading.Tasks.Task |
||
orderId | int | ID of pet that needs to be fetched |
return | System.Threading.Tasks.Task |
public GetOrderByIdAsync ( int orderId, System cancellationToken ) : System.Threading.Tasks.Task |
||
orderId | int | ID of pet that needs to be fetched |
cancellationToken | System | A cancellation token that can be used by other objects or threads to receive notice of cancellation. |
return | System.Threading.Tasks.Task |
public GetPetByIdAsync ( int petId ) : System.Threading.Tasks.Task |
||
petId | int | ID of pet to return |
return | System.Threading.Tasks.Task |
public GetPetByIdAsync ( int petId, System cancellationToken ) : System.Threading.Tasks.Task |
||
petId | int | ID of pet to return |
cancellationToken | System | A cancellation token that can be used by other objects or threads to receive notice of cancellation. |
return | System.Threading.Tasks.Task |
public GetUserByNameAsync ( string username ) : System.Threading.Tasks.Task |
||
username | string | The name that needs to be fetched. Use user1 for testing. |
return | System.Threading.Tasks.Task |
public GetUserByNameAsync ( string username, System cancellationToken ) : System.Threading.Tasks.Task |
||
username | string | The name that needs to be fetched. Use user1 for testing. |
cancellationToken | System | A cancellation token that can be used by other objects or threads to receive notice of cancellation. |
return | System.Threading.Tasks.Task |
public LoginUserAsync ( string username, string password ) : System.Threading.Tasks.Task |
||
username | string | The user name for login |
password | string | The password for login in clear text |
return | System.Threading.Tasks.Task |
public LoginUserAsync ( string username, string password, System cancellationToken ) : System.Threading.Tasks.Task |
||
username | string | The user name for login |
password | string | The password for login in clear text |
cancellationToken | System | A cancellation token that can be used by other objects or threads to receive notice of cancellation. |
return | System.Threading.Tasks.Task |
public LogoutUserAsync ( ) : System.Threading.Tasks.Task | ||
return | System.Threading.Tasks.Task |
public LogoutUserAsync ( System cancellationToken ) : System.Threading.Tasks.Task | ||
cancellationToken | System | A cancellation token that can be used by other objects or threads to receive notice of cancellation. |
return | System.Threading.Tasks.Task |
public PlaceOrderAsync ( |
||
body | order placed for purchasing the pet | |
return | System.Threading.Tasks.Task |
public PlaceOrderAsync ( |
||
body | order placed for purchasing the pet | |
cancellationToken | System | A cancellation token that can be used by other objects or threads to receive notice of cancellation. |
return | System.Threading.Tasks.Task |
public UpdatePetAsync ( |
||
body | Pet object that needs to be added to the store | |
return | System.Threading.Tasks.Task |
public UpdatePetAsync ( |
||
body | Pet object that needs to be added to the store | |
cancellationToken | System | A cancellation token that can be used by other objects or threads to receive notice of cancellation. |
return | System.Threading.Tasks.Task |
public UpdatePetWithFormAsync ( int petId, string name, string status ) : System.Threading.Tasks.Task | ||
petId | int | ID of pet that needs to be updated |
name | string | Updated name of the pet |
status | string | Updated status of the pet |
return | System.Threading.Tasks.Task |
public UpdatePetWithFormAsync ( int petId, string name, string status, System cancellationToken ) : System.Threading.Tasks.Task | ||
petId | int | ID of pet that needs to be updated |
name | string | Updated name of the pet |
status | string | Updated status of the pet |
cancellationToken | System | A cancellation token that can be used by other objects or threads to receive notice of cancellation. |
return | System.Threading.Tasks.Task |
public UpdateUserAsync ( string username, |
||
username | string | name that need to be updated |
body | Updated user object | |
return | System.Threading.Tasks.Task |
public UpdateUserAsync ( string username, |
||
username | string | name that need to be updated |
body | Updated user object | |
cancellationToken | System | A cancellation token that can be used by other objects or threads to receive notice of cancellation. |
return | System.Threading.Tasks.Task |
public UploadFileAsync ( int petId, string additionalMetadata, |
||
petId | int | ID of pet to update |
additionalMetadata | string | Additional data to pass to server |
file | file to upload | |
return | System.Threading.Tasks.Task |
public UploadFileAsync ( int petId, string additionalMetadata, |
||
petId | int | ID of pet to update |
additionalMetadata | string | Additional data to pass to server |
file | file to upload | |
cancellationToken | System | A cancellation token that can be used by other objects or threads to receive notice of cancellation. |
return | System.Threading.Tasks.Task |