Skip to main content
A newer version of this page is available. .
All docs
V20.2
.NET Framework 4.5.2+

WebApiDataStoreService.ProcessCookie(DataCacheCookie) Method

Calls the ICacheToCacheCommunicationCore.ProcessCookie method with error handling.

Namespace: DevExpress.Xpo.DB

Assembly: DevExpress.Xpo.v20.2.dll

NuGet Package: DevExpress.Xpo

Declaration

public OperationResult<DataCacheResult> ProcessCookie(
    DataCacheCookie data
)

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