Skip to main content
A newer version of this page is available. .

IReportServerFacadeAsync.BeginExecuteJob(Int32, Nullable<Int32>, AsyncCallback, Object) Method

Begins executing a scheduled job.

Namespace: DevExpress.ReportServer.ServiceModel.Client

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

Declaration

[OperationContract(AsyncPattern = true)]
IAsyncResult BeginExecuteJob(
    int scheduledJobId,
    int? scheduledJobResult,
    AsyncCallback callback,
    object asyncState
)

Parameters

Name Type Description
scheduledJobId Int32

An integer value, identifying the scheduled job.

scheduledJobResult Nullable<Int32>

A nullable integer value.

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