IReportServerClient.GetScheduledJobLogsAsync(Int32, DataPagination, Object) Method
Asynchronously returns the logs corresponding to a specified scheduled job.
Namespace: DevExpress.ReportServer.ServiceModel.Client
Assembly: DevExpress.Printing.v25.1.Core.dll
NuGet Package: DevExpress.Printing.Core
Declaration
Task<IEnumerable<ScheduledJobLogDto>> GetScheduledJobLogsAsync(
int scheduledJobId,
DataPagination pagination,
object asyncState
)
Parameters
| Name | Type | Description |
|---|---|---|
| scheduledJobId | Int32 | An integer value, identifying the scheduled job. |
| pagination | DataPagination | A DataPagination descendant, specifying how the data should be paginated. |
| asyncState | Object | A Object value, containing information about the asynchronous operation. |
Returns
| Type | Description |
|---|---|
| Task<IEnumerable<ScheduledJobLogDto>> | An asynchronous operation result, containing a collection of ScheduledJobLogDto objects. |
See Also