IReportServerFacadeAsync.BeginUpdateReportCategory(Int32, String, Nullable<Int32>, AsyncCallback, Object) Method
Starts updating the specified report category.
Namespace: DevExpress.ReportServer.ServiceModel.Client
Assembly: DevExpress.Printing.v24.1.Core.dll
NuGet Package: DevExpress.Printing.Core
Declaration
[OperationContract(AsyncPattern = true)]
IAsyncResult BeginUpdateReportCategory(
int categoryId,
string name,
int? optimisticLock,
AsyncCallback callback,
object asyncState
)
Parameters
Name | Type | Description |
---|---|---|
categoryId | Int32 | An integer value specifying the report category ID. |
name | String | A String value specifying the new category name. |
optimisticLock | Nullable<Int32> | A nullable integer value specifying a report category version used for optimistic locking. |
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