Advanced Forum Search Results
-
Is it possible to embed Silverlight in a third party application?
Is it possible to bundle Silverlight with a third party application so that when the app is installed, the app also installs Silverlight?
Any suggestions/documentation/references appreciated.
-
When HTTP is used, Silverlight supports going through proxy servers by using proxy configuration in IE. So as a developer you do not need to worry about if there is a proxy.
For Sockets, is there a similar support? If I try to open a socket to an address, does Silverlight handle it automatically and let me go through the proxy ...
-
I would like to know the use case for being able to provide a LIST of MediaDescriptions when we call ReportOpenMediaCompleted? Can you give an example?
-
The issue is resolved. MediaSource does not have such a problem. The issue turned out to be related to our setup.
Thanks
Cagdas
-
Using example of MediaStreamSource from http://code.msdn.microsoft.com/ManagedMediaHelpers
we ran the sample with different mp3 files. For every one of them, we got a bad sound quality. The most obvious problem is the media does not sound continuous. Is this a problem with the implementation of MediaStreamSource, or it is a problem with the ...
-
Using example of MediaStreamSource from http://code.msdn.microsoft.com/ManagedMediaHelpers
We extended the code to have 2 mp3 audiostreams by defining two MediaStreamDescriptions and adding extra variables for current position and current frame size for each stream.
After we call
this.ReportOpenMediaCompleted(mediaSourceAttributes, ...
-
Here is the code to set the source of an image from a byte array.
//myImage is an Image controller
MemoryStream memory_stream = new MemoryStream(image_bytes);
BitmapImage bimg = new BitmapImage();
bimg.SetSource(memory_stream);
myImage.Source = bimg;
My goal is to measure how long it takes to render an image in Silverlight. My ...
-
I tried and it worked. I am glad to see you can do HTTP Streaming with Silverlight.
I put a snippet code here:
http://bence-bmc.blogspot.com/2008/09/creating-http-streaming-client-in.html.
-
Yes. I can read the custom header and the value; the name of the header is HTTP_[name of the header where it is capitalized and - replaced by _] - if your header name is xyz_-abc, then it becomes HTTP_XYZ__ABC.
-
I tried your code. I got the following exception
"Error HRESULT E_FAIL has been returned from a call to a COM component".
When I set the request method to POST with
request.Method = "POST", I didn't get any exceptions and in Firefox, my silverlight app was able to receive every byte sent.
When I set the ...