I have a web service that returns an azure URL, I am setting that as data source for my image control in list item template.This list may contain large number of items(Now it has around 30 items only).My app memory consumption goes beyond 100 MB for this single page, some 10 MB data gets downloaded.
When user goes to some other page and comes back to this page with images from azure,My web service will be called again, and so all images would be downloaded again.Is there any way to check if images are already downloaded and prevent download again?
I am not sure about what happens under the hood while giving an URL to an image control.
This is my XAML
<Image
Stretch="UniformToFill"
Grid.Column="1"
Grid.Row="0"
VerticalAlignment="Top"
Source="{Binding image_name}"
Height="72"
Width="128" >
</Image>