When I use a StreamImage multiple for multiple images it works just fine, except when it's a StreamImageSource... The first Image will display fine, but the subsequent Image are blank
I have used this HACK to get around it
_contactImage.Stream.Invoke(CancellationToken.None).Result.Seek(0,System.IO.SeekOrigin.Begin);
But surly this is a major bug; we should be able use ImageSource on multiple Image with no issues...?