Skip to main content
All docs
V26.1
  • .NET 8.0+

    ICachedDataStoreServiceAsync.NotifyDirtyTablesAsync(DataCacheCookie, String[]) Method

    Asynchronously informs a cached data store‘s Root element (DataCacheRoot or MSSql2005SqlDependencyCacheRoot) about specific modified tables.

    Namespace: DevExpress.Xpo.DB

    Assembly: DevExpress.Xpo.v26.1.dll

    Declaration

    [OperationContract(Action = "http://tempuri.org/ICachedDataStoreService/NotifyDirtyTables", ReplyAction = "http://tempuri.org/ICachedDataStoreService/NotifyDirtyTablesResponse")]
    [XmlSerializerFormat]
    Task<OperationResult<DataCacheResult>> NotifyDirtyTablesAsync(
        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 that specify modified tables.

    Returns

    Type Description
    Task<OperationResult<DataCacheResult>>

    A Task that returns the operation result.

    See Also