示例#1
0
        /// <summary>
        /// Replays content from a provenance event
        /// </summary>
        /// <exception cref="ApiException">Thrown when fails to make API call</exception>
        /// <param name="body">The replay request.</param>
        /// <returns>Task of ProvenanceEventEntity</returns>
        public async System.Threading.Tasks.Task <ProvenanceEventEntity> SubmitReplayAsync(SubmitReplayRequestEntity body)
        {
            ApiResponse <ProvenanceEventEntity> localVarResponse = await this.SubmitReplayAsyncWithHttpInfo(body);

            return(localVarResponse.Data);
        }
示例#2
0
        /// <summary>
        /// Replays content from a provenance event
        /// </summary>
        /// <exception cref="ApiException">Thrown when fails to make API call</exception>
        /// <param name="body">The replay request.</param>
        /// <returns>Task of ApiResponse (ProvenanceEventEntity)</returns>
        public async System.Threading.Tasks.Task <ApiResponse <ProvenanceEventEntity> > SubmitReplayAsyncWithHttpInfo(SubmitReplayRequestEntity body)
        {
            // verify the required parameter 'body' is set
            if (body == null)
            {
                throw new ApiException(400, "Missing required parameter 'body' when calling ProvenanceEventsApi->SubmitReplay");
            }

            var    localVarPath         = "/provenance-events/replays";
            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"
            };
            String localVarHttpContentType = this.Configuration.ApiClient.SelectHeaderContentType(localVarHttpContentTypes);

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

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

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


            // 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 (this.ExceptionFactory != null)
            {
                Exception exception = this.ExceptionFactory("SubmitReplay", localVarResponse);
                if (exception != null)
                {
                    throw exception;
                }
            }

            return(new ApiResponse <ProvenanceEventEntity>(localVarStatusCode,
                                                           localVarResponse.Headers.ToDictionary(x => x.Name, x => x.Value.ToString()),
                                                           (ProvenanceEventEntity)this.Configuration.ApiClient.Deserialize(localVarResponse, typeof(ProvenanceEventEntity))));
        }
示例#3
0
        /// <summary>
        /// Replays content from a provenance event
        /// </summary>
        /// <exception cref="ApiException">Thrown when fails to make API call</exception>
        /// <param name="body">The replay request.</param>
        /// <returns>ProvenanceEventEntity</returns>
        public ProvenanceEventEntity SubmitReplay(SubmitReplayRequestEntity body)
        {
            ApiResponse <ProvenanceEventEntity> localVarResponse = this.SubmitReplayWithHttpInfo(body);

            return(localVarResponse.Data);
        }