Developer technologies | .NET | Xamarin
A Microsoft framework for building cross-platform mobile apps using .NET and C# with native performance and user interfaces.
This browser is no longer supported.
Upgrade to Microsoft Edge to take advantage of the latest features, security updates, and technical support.
Hi,
I have the following Image in my app:
<Image Source="{Binding gallery_image}" Aspect="AspectFill" IsLoading="{Binding Item, Mode=TwoWay}" />
but I want to set the CacheValidity to 7 days. However, I am not able to. I tried below:
<Image Aspect="AspectFill" IsLoading="{Binding Item, Mode=TwoWay}">
<Image.Source>
<UriImageSource Uri="{Binding Image}" CacheValidity="14" CachingEnabled="true"/>
</Image.Source>
</Image>
but this is referring to a UriImageSource when my Source is {Binding gallery_image}
Kindly help..
Thanks,
Jassim
A Microsoft framework for building cross-platform mobile apps using .NET and C# with native performance and user interfaces.
Maybe this could help you