I have developed a Windows Phone application that uses camera to take pictures every second. Now I want to send these images to my Windows desktop application.
Besides images, I'm planing to send GPS data and other sensors' data to my Windows desktop application in the future.
I believe I can use System.Net.Sockets.Socket
, but what I get from Socket is byte[]
, I don't know which part of the array is an image and which part is the next image. I need special coding.
Are there object-oriented ways to send data? Does .net remoting and WCF work on WP? What's your suggestion?
The target Windows Phone OS version can be 8 or 8.1.