0

I want to send a tile notification from one device to another. Is it possible to send an image from the phone's isolated storage in a tile notification?

Eran
  • 387,369
  • 54
  • 702
  • 768
user2740785
  • 141
  • 1
  • 3
  • 9

1 Answers1

0

Unfortunately not.

The images on tiles must either be on the device that is displaying them or online. As only a Uri is passed in the notification message it's not possible to include an encoded image in the payload.

If you want to capture an image on one device and then display it on another it will first need to be uploaded to a public location on the web or sent between the devices in another way.

Matt Lacey
  • 65,560
  • 11
  • 91
  • 143