You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
@@ -107,29 +107,29 @@ You can give optional settings to the CachedRequest object.
107
107
108
108
On, for example, MainLayout.razor.cs, you can set the Postfix to be used for all requests. This is useful if you have multiple users using the same app from the same browser.
ExpireStorageService knows two properties to monitor if the app is offline.
114
+
OfflineSupportService knows two properties to monitor if the app is offline.
115
115
116
116
IsOffline is true when the last request had an `HttpRequestException`, after a successful request IsOffline will be false.
117
117
118
-
`ExpireStorageService.IsOffline` and `ExpireStorageService.IsOfflineChanged`
118
+
`OfflineSupportService.IsOffline` and `OfflineSupportService.IsOfflineChanged`
119
119
120
120
#### LogToConsole
121
121
122
-
ExpireStorageService can log to the console if you want to see what is happening, *default: false*.
122
+
OfflineSupportService can log to the console if you want to see what is happening, *default: false*.
123
123
124
-
`ExpireStorageService.LogToConsole = true;`
124
+
`OfflineSupportService.LogToConsole = true;`
125
125
126
126
### ICacheableResponse
127
127
128
128
If a response object implements ICacheableResponse, the HandledBy property will be set to `HandledBy.Cache` if the result was retrieved from cache and to `HandledBy.Default` if the default provided by
<Description>Adds a wrapper on top of Blazored.LocalStorage and Blazored.SessionStorage to expire items from localstorage and sessionstorage after a specified time.</Description>
0 commit comments