Skip to main content

IReportServerClient.UpdateReportCategory(Int32, String, Nullable<Int32>, Object, Action<AsyncCompletedEventArgs>) Method

Updates the name of the specified report category.

Namespace: DevExpress.ReportServer.ServiceModel.Client

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

NuGet Package: DevExpress.Printing.Core

Declaration

void UpdateReportCategory(
    int categoryId,
    string categoryName,
    int? optimisticLock,
    object asyncState,
    Action<AsyncCompletedEventArgs> onCompleted
)

Parameters

Name Type Description
categoryId Int32

A System.Int32 specifying the report category to update.

categoryName String

A System.String value specifying a new name for the report category.

optimisticLock Nullable<Int32>

A nullable integer value specifying a category version used for optimistic locking.

asyncState Object

A Object value containing information about the asynchronous operation.

onCompleted Action<AsyncCompletedEventArgs>

A System.Action delegate to be called when the operation is complete.

See Also