Skip to main content

IReportServerClient.ExecuteJobAsync(Int32, Nullable<Int32>, Object) Method

Asynchronously executes a scheduled job.

Namespace: DevExpress.ReportServer.ServiceModel.Client

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

NuGet Package: DevExpress.Printing.Core

Declaration

Task<int?> ExecuteJobAsync(
    int scheduledJobId,
    int? scheduledJobResult,
    object asyncState
)

Parameters

Name Type Description
scheduledJobId Int32

An integer value, identifying the scheduled job.

scheduledJobResult Nullable<Int32>

A nullable integer value.

asyncState Object

A Object value, containing information about the asynchronous operation.

Returns

Type Description
Task<Nullable<Int32>>

A Task, specifying the job ID.

The following code snippet (auto-collected from DevExpress Examples) contains a reference to the ExecuteJobAsync(Int32, Nullable<Int32>, Object) method.

Note

The algorithm used to collect these code examples remains a work in progress. Accordingly, the links and snippets below may produce inaccurate results. If you encounter an issue with code examples below, please use the feedback form on this page to report the issue.

See Also