I have a Binary stream that takes photo stream from the PhotoChooser
Task in windows phone.
I am trying to upload the picture that the user chooses onto my web server.
How do I copy the photo stream to the HttpRequest Stream?
So far I have something like this
BinaryStream BStream = new BinaryStream(StreamFromPhotoChooser);
HttpRequest request = new HttpRequest()
I know how to set the properties for the HttpRequest so that it uploads to the right place.
My only problem is the ACTUAL
uploading of the picture.