/// <summary> /// Parse an HTTP User-Agent string, identify robots Uses a parsing system and database to parse the User-Agent into its structured component parts, such as Browser, Browser Version, Browser Engine, Operating System, and importantly, Robot identification. /// </summary> /// <exception cref="Cloudmersive.APIClient.NETCore.Validate.Client.ApiException">Thrown when fails to make API call</exception> /// <param name="request">Input parse request</param> /// <returns>Task of UserAgentValidateResponse</returns> public async System.Threading.Tasks.Task <UserAgentValidateResponse> UserAgentParseAsync(UserAgentValidateRequest request) { ApiResponse <UserAgentValidateResponse> localVarResponse = await UserAgentParseAsyncWithHttpInfo(request); return(localVarResponse.Data); }
/// <summary> /// Parse an HTTP User-Agent string, identify robots Uses a parsing system and database to parse the User-Agent into its structured component parts, such as Browser, Browser Version, Browser Engine, Operating System, and importantly, Robot identification. /// </summary> /// <exception cref="Cloudmersive.APIClient.NETCore.Validate.Client.ApiException">Thrown when fails to make API call</exception> /// <param name="request">Input parse request</param> /// <returns>Task of ApiResponse (UserAgentValidateResponse)</returns> public async System.Threading.Tasks.Task <ApiResponse <UserAgentValidateResponse> > UserAgentParseAsyncWithHttpInfo(UserAgentValidateRequest request) { // verify the required parameter 'request' is set if (request == null) { throw new ApiException(400, "Missing required parameter 'request' when calling UserAgentApi->UserAgentParse"); } var localVarPath = "./validate/useragent/parse"; var localVarPathParams = new Dictionary <String, String>(); var localVarQueryParams = new List <KeyValuePair <String, String> >(); var localVarHeaderParams = new Dictionary <String, String>(this.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", "text/json" }; String localVarHttpContentType = this.Configuration.ApiClient.SelectHeaderContentType(localVarHttpContentTypes); // to determine the Accept header String[] localVarHttpHeaderAccepts = new String[] { "application/json", "text/json", "application/xml", "text/xml" }; String localVarHttpHeaderAccept = this.Configuration.ApiClient.SelectHeaderAccept(localVarHttpHeaderAccepts); if (localVarHttpHeaderAccept != null) { localVarHeaderParams.Add("Accept", localVarHttpHeaderAccept); } if (request != null && request.GetType() != typeof(byte[])) { localVarPostBody = this.Configuration.ApiClient.Serialize(request); // http body (model) parameter } else { localVarPostBody = request; // byte array } // authentication (Apikey) required if (!String.IsNullOrEmpty(this.Configuration.GetApiKeyWithPrefix("Apikey"))) { localVarHeaderParams["Apikey"] = this.Configuration.GetApiKeyWithPrefix("Apikey"); } // make the HTTP request IRestResponse localVarResponse = (IRestResponse)await this.Configuration.ApiClient.CallApiAsync(localVarPath, Method.POST, localVarQueryParams, localVarPostBody, localVarHeaderParams, localVarFormParams, localVarFileParams, localVarPathParams, localVarHttpContentType); int localVarStatusCode = (int)localVarResponse.StatusCode; if (ExceptionFactory != null) { Exception exception = ExceptionFactory("UserAgentParse", localVarResponse); if (exception != null) { throw exception; } } return(new ApiResponse <UserAgentValidateResponse>(localVarStatusCode, localVarResponse.Headers.ToDictionary(x => x.Key, x => x.Value.ToString()), (UserAgentValidateResponse)this.Configuration.ApiClient.Deserialize(localVarResponse, typeof(UserAgentValidateResponse)))); }
/// <summary> /// Parse an HTTP User-Agent string, identify robots Uses a parsing system and database to parse the User-Agent into its structured component parts, such as Browser, Browser Version, Browser Engine, Operating System, and importantly, Robot identification. /// </summary> /// <exception cref="Cloudmersive.APIClient.NETCore.Validate.Client.ApiException">Thrown when fails to make API call</exception> /// <param name="request">Input parse request</param> /// <returns>UserAgentValidateResponse</returns> public UserAgentValidateResponse UserAgentParse(UserAgentValidateRequest request) { ApiResponse <UserAgentValidateResponse> localVarResponse = UserAgentParseWithHttpInfo(request); return(localVarResponse.Data); }