コード例 #1
0
        /// <summary>
        /// MakeHat produces a hat of mysterious, randomly-selected color!
        /// </summary>
        /// <exception cref="IO.Swagger.Client.ApiException">Thrown when fails to make API call</exception>
        /// <param name="body"></param>
        /// <returns>Task of ExampleHat</returns>
        public async System.Threading.Tasks.Task <ExampleHat> MakeHatAsync(ExampleSize body)
        {
            ApiResponse <ExampleHat> localVarResponse = await MakeHatAsyncWithHttpInfo(body);

            return(localVarResponse.Data);
        }
コード例 #2
0
        /// <summary>
        /// MakeHat produces a hat of mysterious, randomly-selected color!
        /// </summary>
        /// <exception cref="IO.Swagger.Client.ApiException">Thrown when fails to make API call</exception>
        /// <param name="body"></param>
        /// <returns>Task of ApiResponse (ExampleHat)</returns>
        public async System.Threading.Tasks.Task <ApiResponse <ExampleHat> > MakeHatAsyncWithHttpInfo(ExampleSize body)
        {
            // verify the required parameter 'body' is set
            if (body == null)
            {
                throw new ApiException(400, "Missing required parameter 'body' when calling HaberdasherApi->MakeHat");
            }

            var    localVarPath         = "/twirp/twitch.twirp.example.Haberdasher/MakeHat";
            var    localVarPathParams   = new Dictionary <String, String>();
            var    localVarQueryParams  = new List <KeyValuePair <String, String> >();
            var    localVarHeaderParams = new Dictionary <String, String>(Configuration.DefaultHeader);
            var    localVarFormParams   = new Dictionary <String, String>();
            var    localVarFileParams   = new Dictionary <String, FileParameter>();
            Object localVarPostBody     = null;

            // to determine the Content-Type header
            String[] localVarHttpContentTypes = new String[] {
                "application/json"
            };
            String localVarHttpContentType = Configuration.ApiClient.SelectHeaderContentType(localVarHttpContentTypes);

            // to determine the Accept header
            String[] localVarHttpHeaderAccepts = new String[] {
                "application/json"
            };
            String localVarHttpHeaderAccept = Configuration.ApiClient.SelectHeaderAccept(localVarHttpHeaderAccepts);

            if (localVarHttpHeaderAccept != null)
            {
                localVarHeaderParams.Add("Accept", localVarHttpHeaderAccept);
            }

            if (body != null && body.GetType() != typeof(byte[]))
            {
                localVarPostBody = Configuration.ApiClient.Serialize(body); // http body (model) parameter
            }
            else
            {
                localVarPostBody = body; // byte array
            }


            // make the HTTP request
            IRestResponse localVarResponse = (IRestResponse)await Configuration.ApiClient.CallApiAsync(localVarPath,
                                                                                                       Method.POST, localVarQueryParams, localVarPostBody, localVarHeaderParams, localVarFormParams, localVarFileParams,
                                                                                                       localVarPathParams, localVarHttpContentType);

            int localVarStatusCode = (int)localVarResponse.StatusCode;

            if (ExceptionFactory != null)
            {
                Exception exception = ExceptionFactory("MakeHat", localVarResponse);
                if (exception != null)
                {
                    throw exception;
                }
            }

            return(new ApiResponse <ExampleHat>(localVarStatusCode,
                                                localVarResponse.Headers.ToDictionary(x => x.Name, x => x.Value.ToString()),
                                                (ExampleHat)Configuration.ApiClient.Deserialize(localVarResponse, typeof(ExampleHat))));
        }
コード例 #3
0
        /// <summary>
        /// MakeHat produces a hat of mysterious, randomly-selected color!
        /// </summary>
        /// <exception cref="IO.Swagger.Client.ApiException">Thrown when fails to make API call</exception>
        /// <param name="body"></param>
        /// <returns>ExampleHat</returns>
        public ExampleHat MakeHat(ExampleSize body)
        {
            ApiResponse <ExampleHat> localVarResponse = MakeHatWithHttpInfo(body);

            return(localVarResponse.Data);
        }