Save Silverlight webcam image (ImageSource) to Server
问题 This is as far as I've gotten. What code would I write to save a captured image to the server? Without any dialog prompting for a save location. Similar to the way Facebook does it. (I've been unable to find examples online) void CaptureSource_CaptureImageCompleted(object sender, CaptureImageCompletedEventArgs e) { capturedImage.ImageSource = e.Result; stopCapture(); // turns off webcam } 回答1: It is not that simple. Create a WCF service on the server. Consume it on the silverlight client.