Click or drag to resize

PdfAdvancedSettingsAllowHttpHandlerRendering Property

Gets or sets a value representing whether rendering should be allowed directly by the PdfHttpHandler instead of relying on the RAD PDF System Service for server side rendering.

Namespace:  RadPdf.Integration
Assembly:  RadPdf (in RadPdf.dll) Version: 3.44.0.0 (3.44.0.0)
Syntax
public bool AllowHttpHandlerRendering { get; set; }

Property Value

Type: Boolean
Remarks

Typically, all rendering requests are routed to the RAD PDF System Service. When not using the service (UseService is false), you can allow rendering to be done directly by the application code handling requests for these resources. This will enable server side rendering without using the RAD PDF System Service, but may place more CPU load on your application server. Additionally, the maximum rendering time for a page will be limited to the request timeouts and may cause problems for pages which take a very long time to render.

The default value is true.

This property only has an effect if UseService is false.

See Also