upgrade restsharp to 105.1.0

This commit is contained in:
wing328 2015-06-10 15:57:07 +08:00
parent 672fcd5a14
commit 4982784d7c
3 changed files with 2 additions and 2 deletions

View File

@ -500,7 +500,7 @@ namespace IO.Swagger.Api {
// authentication setting, if any
String[] authSettings = new String[] { "petstore_auth", "api_key" };
String[] authSettings = new String[] { "api_key", "petstore_auth" };
// make the HTTP request
IRestResponse response = (IRestResponse) apiClient.CallApi(path, Method.GET, queryParams, postBody, headerParams, formParams, fileParams, authSettings);
@ -540,7 +540,7 @@ namespace IO.Swagger.Api {
// authentication setting, if any
String[] authSettings = new String[] { "petstore_auth", "api_key" };
String[] authSettings = new String[] { "api_key", "petstore_auth" };
// make the HTTP request
IRestResponse response = (IRestResponse) await apiClient.CallApiAsync(path, Method.GET, queryParams, postBody, headerParams, formParams, fileParams, authSettings);