IReportServerClient.SaveReportById(Int32, ReportDto, Object, Action<ScalarOperationCompletedEventArgs<Int32>>) Method
Saves the specified report to the server storage.
Namespace: DevExpress.ReportServer.ServiceModel.Client
Assembly: DevExpress.Printing.v24.1.Core.dll
NuGet Package: DevExpress.Printing.Core
Declaration
void SaveReportById(
int reportId,
ReportDto reportDto,
object asyncState,
Action<ScalarOperationCompletedEventArgs<int>> onCompleted
)
Parameters
Name | Type | Description |
---|---|---|
reportId | Int32 | A System.Int32 value specifying a report to save. |
reportDto | ReportDto | A Data Transfer Object containing report data. |
asyncState | Object | A Object value, containing information about the asynchronous operation. |
onCompleted | Action<ScalarOperationCompletedEventArgs<Int32>> | A System.Action delegate to be called when the operation is complete. |
See Also