Skip to main content
A newer version of this page is available. .

WebDocumentViewerOperationLogger.BuildStarting(String, String, XtraReport, ReportBuildProperties) Method

Called before starting to asynchronously build a report document.

Namespace: DevExpress.XtraReports.Web.WebDocumentViewer

Assembly: DevExpress.XtraReports.v18.2.Web.dll

Declaration

public virtual Action BuildStarting(
    string reportId,
    string reportUrl,
    XtraReport report,
    ReportBuildProperties buildProperties
)

Parameters

Name Type Description
reportId String

A String value that identifies the report.

reportUrl String

A String value that specifies the report URL.

report XtraReport

An XtraReport object.

buildProperties ReportBuildProperties

A ReportBuildProperties object.

Returns

Type Description
Action

A Action delegate.

Remarks

If a document is already built, calling this method will not build it again, asynchronously.

An action returned by this method is called in a separate thread on starting asynchronous building of a report document.

See Also