How do i delete cached image with the same Uri (old cached image always served after user change his profile image which has the same Uri)
I tried with FFImageLoading CachedImage.InvalidateCache(_userProfileImagePath, CacheType.All, true); and set CachingEnabled="False" with regular image
<ImageButton Command="{Binding SetPageCommand}" CommandParameter="{Binding MenuItems[8].TargetType}"> <ImageButton.Source> <UriImageSource Uri="{Binding UserProfileImagePath}" CachingEnabled="False"/> </ImageButton.Source> </ImageButton>
↧
Deleting cached image with the same Uri
↧