WebApiDataStoreService.ProcessCookie(DataCacheCookie) Method
Calls the ICacheToCacheCommunicationCore.ProcessCookie method with error handling.
Namespace: DevExpress.Xpo.DB
Assembly: DevExpress.Xpo.v25.1.dll
NuGet Package: DevExpress.Xpo
Declaration
Parameters
| Name | Type | Description |
|---|---|---|
| data | DataCacheCookie | A Root element’s state stored by a specific cache Node. |
Returns
| Type | Description |
|---|---|
| OperationResult<DataCacheResult> | A Root element’s state. |
Remarks
[HttpPost]
public OperationResult<DataCacheResult> ProcessCookie([FromBody] DataCacheCookie data) {
return DataStoreService.ProcessCookie(data);
}
See Also