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
Problem
I am trying to develop a common base class for the browser storage from which I will have inherit my own local and session storage services. The blazored service will be passed to the base storage. This does not work currently since the different services implement their own interfaces, even when they are identical.
Solution
Have a common interface IBrowserStorageService, which is inherited by ILocalStorageService and ISessionStorageService.
The text was updated successfully, but these errors were encountered:
Problem
I am trying to develop a common base class for the browser storage from which I will have inherit my own local and session storage services. The blazored service will be passed to the base storage. This does not work currently since the different services implement their own interfaces, even when they are identical.
Solution
Have a common interface
IBrowserStorageService
, which is inherited byILocalStorageService
andISessionStorageService
.The text was updated successfully, but these errors were encountered: