DocRaptor.Api.DocApi.CreateAsyncDocAsync C# (CSharp) Method

CreateAsyncDocAsync() public method

Creates a document asynchronously. You must use a callback url or the the returned status id and the status api to find out when it completes. Then use the download api to get the document.
Thrown when fails to make API call
public CreateAsyncDocAsync ( Doc doc ) : System.Threading.Tasks.Task
doc Doc The document to be created.
return System.Threading.Tasks.Task
        public async System.Threading.Tasks.Task<AsyncDoc> CreateAsyncDocAsync (Doc doc)
        {
             ApiResponse<AsyncDoc> localVarResponse = await CreateAsyncDocAsyncWithHttpInfo(doc);
             return localVarResponse.Data;

        }