ConversionOptions.Logging Property

Gets or sets the Temporary directory path.

public static LogConfig Logging { get; }

Property Value

LogConfig

Licensing Info

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

Examples

This example shows how to use the TemporaryDirectory property.
using System;
using ceTe.DynamicPDF.Conversion;

class MyClass
{
    static void Main()
    {
        //Assign level of logging to log config.
        ConversionOptions.Logging.Level = LogLevel.Warning;

        // Call convert method to do conversion.
        Converter.Convert(@"Hello World", @"C:\MyOutput.pdf");        
    }      
}

See Also

ConversionOptions
ceTe.DynamicPDF.HtmlConverter