IAsyncReportService.BeginGetLookUpValues(InstanceIdentity, ReportParameter[], String[], AsyncCallback, Object) Method
Starts obtaining the parameter lookup values.
Namespace: DevExpress.DocumentServices.ServiceModel.Client
Assembly: DevExpress.Printing.v24.1.Core.dll
NuGet Package: DevExpress.Printing.Core
Declaration
[OperationContract(AsyncPattern = true)]
IAsyncResult BeginGetLookUpValues(
InstanceIdentity identity,
ReportParameter[] parameterValues,
string[] requiredParameterPaths,
AsyncCallback callback,
object asyncState
)
Parameters
Name | Type | Description |
---|---|---|
identity | InstanceIdentity | An InstanceIdentity value. |
parameterValues | ReportParameter[] | An array of ReportParameter objects. |
requiredParameterPaths | String[] | An array of String values, specifying the parameter paths (for example, “subreport1.subreportParameter1”). |
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