Skip to main content

IReportServerClient.CloneReport(Int32, ReportDto, Object, Action<ScalarOperationCompletedEventArgs<ReportDto>>) Method

Creates a copy of the specified report.

Namespace: DevExpress.ReportServer.ServiceModel.Client

Assembly: DevExpress.Printing.v23.2.Core.dll

NuGet Package: DevExpress.Printing.Core

Declaration

void CloneReport(
    int sourceReportId,
    ReportDto reportDto,
    object asyncState,
    Action<ScalarOperationCompletedEventArgs<ReportDto>> onCompleted
)

Parameters

Name Type Description
sourceReportId Int32

A System.Int32 value specifying a source report.

reportDto ReportDto

A data transfer object specifying properties of the created report copy.

asyncState Object

A Object value, containing information about the asynchronous operation.

onCompleted Action<ScalarOperationCompletedEventArgs<ReportDto>>

A System.Action delegate to be called when the operation is complete.

See Also