CacheStorageClientRequestEntriesAsync Method  | 
Version 89.0.170 
            Requests data from cache.
            
 
    Namespace: 
   CefSharp.DevTools.CacheStorage
    Assembly:
   CefSharp (in CefSharp.dll) Version: 89.0.170.0 (89.0.170.0)
Syntaxpublic Task<RequestEntriesResponse> RequestEntriesAsync(
	string cacheId,
	Nullable<int> skipCount = null,
	Nullable<int> pageSize = null,
	string pathFilter = null
)
public:
Task<RequestEntriesResponse^>^ RequestEntriesAsync(
	String^ cacheId, 
	Nullable<int> skipCount = nullptr, 
	Nullable<int> pageSize = nullptr, 
	String^ pathFilter = nullptr
)
Parameters
- cacheId
 - Type: SystemString
ID of cache to get entries from. - skipCount (Optional)
 - Type: SystemNullableInt32
Number of records to skip. - pageSize (Optional)
 - Type: SystemNullableInt32
Number of records to fetch. - pathFilter (Optional)
 - Type: SystemString
If present, only return the entries containing this substring in the path 
Return Value
Type: 
TaskRequestEntriesResponsereturns System.Threading.Tasks.Task<RequestEntriesResponse>
See Also