ICachedDataStoreService.NotifyDirtyTables(DataCacheCookie, String[]) Method
Defines a service operation that, when implemented by a class, informs a cached data store‘s Root element (DataCacheRoot or MSSql2005SqlDependencyCacheRoot) about specific modified tables.
Namespace: DevExpress.Xpo.DB
Assembly: DevExpress.Xpo.v24.1.dll
NuGet Packages: DevExpress.Win.PivotGrid, DevExpress.Win.TreeMap, DevExpress.Xpo
NuGet Package: DevExpress.Xpo
Declaration
[OperationContract(Action = "http://tempuri.org/ICachedDataStoreService/NotifyDirtyTables", ReplyAction = "http://tempuri.org/ICachedDataStoreService/NotifyDirtyTablesResponse")]
[XmlSerializerFormat]
OperationResult<DataCacheResult> NotifyDirtyTables(
DataCacheCookie cookie,
params string[] dirtyTablesNames
)
Parameters
Name | Type | Description |
---|---|---|
cookie | DataCacheCookie | A Root element’s state stored by a specific cache Node. |
dirtyTablesNames | String[] | An array of table names specifying modified tables. |
Returns
Type | Description |
---|---|
OperationResult<DataCacheResult> | An OperationResult<DataCacheResult> object denoting the operation result. |
See Also