IReportServerFacadeAsync.BeginCloneReport(Int32, ReportDto, AsyncCallback, Object) Method
Starts creating a report copy.
Namespace: DevExpress.ReportServer.ServiceModel.Client
Assembly: DevExpress.Printing.v25.1.Core.dll
NuGet Package: DevExpress.Printing.Core
Declaration
[OperationContract(AsyncPattern = true)]
IAsyncResult BeginCloneReport(
int sourceReportId,
ReportDto reportDto,
AsyncCallback callback,
object asyncState
)
Parameters
| Name | Type | Description |
|---|---|---|
| sourceReportId | Int32 | An integer value, identifying the report to clone. |
| reportDto | ReportDto | A ReportDto object. |
| callback | AsyncCallback | References a method to be called when a corresponding asynchronous operation is completed. |
| asyncState | Object | A Object value, containing information about the asynchronous operation. |
Returns
| Type | Description |
|---|---|
| IAsyncResult | An object containing information about the status of an asynchronous operation. |
See Also