HtmlConverter.ConvertAsync

Overloads

ConvertAsync()Does the Asynchronous conversion
ConvertAsync(Byte[])Does the Asynchronous conversion
ConvertAsync(String)Does the Asynchronous conversion

ConvertAsync()

Does the Asynchronous conversion

public Task<Byte[]> ConvertAsync()
Function ConvertAsync() As Task(Of Byte())

Returns

Task<Byte[]>

returns a Task where the result type is byte array

Licensing Info

This method is a DynamicPDF Converter feature. One of the following is required for non-evaluation usage:

Examples

This example shows how to use convert method with byte array as return type.
Imports ceTe.DynamicPDF.Conversion

Module Module1

Async Function run() As Task
  
   ' Create new instance of Converter by providing suitable parameters.
    Dim htmlConversion As HtmlConverter = New HtmlConverter("C:\MyDocument.html")

    ' Call Convert method to start conversion
    Dim result= Await htmlConversion.ConvertAsync()
    If (result IsNot Nothing) Then
            File.WriteAllBytes("C:\MyDocument.pdf",result)
    End If

End Function

Sub Main()
    run().Wait()
End Sub
 
End Module
using ceTe.DynamicPDF.Conversion;
using System.IO;

class MyClass
{
    static async Task run()
    {
              
        // Create new instance of Converter.
        HtmlConverter htmlConverter = new HtmlConverter(@"C:\MyDocument.html");
        
        //Call Convert method to start conversion
        byte[] result=await htmlConverter.ConvertAsync();
        if(result!=null)
        {
                 File.WriteAllBytes("C:\MyDocument.pdf", result);
              
        }
    }
    static void Main()
    {  
        run().Wait();
    }
}

ConvertAsync(Byte[])

Does the Asynchronous conversion

public Task<Byte[]> ConvertAsync(Byte[] pdfToAppendTo)
Function ConvertAsync(pdfToAppendTo As Byte()) As Task(Of Byte())

Parameters

pdfToAppendTo
Byte[]

Contents of Pdf in byte array format, to which the current conversion needs to be appended to

Returns

Task<Byte[]>

returns a Task where the result type is byte array

Licensing Info

This method is a DynamicPDF Converter feature. One of the following is required for non-evaluation usage:

Examples

This example shows how to use convert method with pdf byte array as parameter and byte array as return type.
Imports ceTe.DynamicPDF.Conversion

Module Module1

Sub Main()
  
   ' Create new instance of Converter by providing suitable parameters.
    Dim htmlConversion As HtmlConverter = New HtmlConverter("C:\MyDocument.html")

    ' Call Convert method to start conversion
    Dim output As Byte() =Await htmlConversion.ConvertAsync()
    
    If (output IsNot Nothing) Then
         Dim finalOutput As Byte() =Await htmlConversion.ConvertAsync(output)
         'save byte array output to a file.
         File.WriteAllBytes("C:\MyOutputFile.pdf", finalOutput)
    End If

End Sub
 
End Module
using ceTe.DynamicPDF.Conversion;

class MyClass
{
    static void Main()
    {        
        // Create new instance of Converter.
        HtmlConverter htmlConverter = new HtmlConverter(@"C:\MyDocument.html");
        
        //Call Convert method to start conversion
        byte []output=await htmlConverter.ConvertAsync();
        
        if(output!=null)
        {
             byte []finalOutputByte=await htmlConverter.ConvertAsync(output);
             //save byte array output to a file.
             File.WriteAllBytes("C:\MyOutputFile.pdf",finalOutputByte);
        }
    }
}

ConvertAsync(String)

Does the Asynchronous conversion

public Task<bool> ConvertAsync(string outputFilePath)
Function ConvertAsync(outputFilePath As String) As Task(Of Boolean)

Parameters

outputFilePath
String

Returns

Task<bool>

Licensing Info

This method is a DynamicPDF Converter feature. One of the following is required for non-evaluation usage:

Examples

This example shows how to use convert method byte array as return type.
Imports ceTe.DynamicPDF.Conversion

Module Module1

Async Function run() As Task
  
   ' Create new instance of Converter by providing suitable parameters.
    Dim htmlConversion As HtmlConverter = New HtmlConverter("C:\MyDocument.html")

    ' Call Convert method to start conversion
    Dim result= Await htmlConversion.ConvertAsync("C:\MyOutput.pdf")
    If (result) Then
            Console.WriteLine("Completed successfully);
              
    End If

End Function

Sub Main()
    run().Wait()
End Sub
 
End Module
using ceTe.DynamicPDF.Conversion;
using Syste.IO;

class MyClass
{
    static async Task run()
    {
              
        // Create new instance of Converter.
        HtmlConverter htmlConverter = new HtmlConverter(@"C:\MyDocument.html");
        
        //Call Convert method to start conversion
        bool result= await htmlConverter.ConvertAsync(@"C:\MyOutput.pdf");
        if(result)
        {
             Console.WriteLine("Completed successfully);
               
        }
    }
    static void Main()
    {  
        run().Wait();
    }
}

See Also

HtmlConverter
ceTe.DynamicPDF.Conversion

In this topic