Silverlight Low Level Socket Support?
I have a Silverlight app that needs low-level socket support. It's an Out-of-Browser Trusted app, so it has more network permissions. But, I noticed that that Silverlight only supports limited TCP sockets, even with elevated permissions. The method "SetSocketOption" has been removed too. I didn't think that was too big of deal as I knew that I could integrated with COM components. I figured that I would just use Winsock and get on with it. However, the Winsock COM component isn't installed by default on Windows installations, so that won't work either.
It seems to me that this just isn't pos开发者_StackOverflow社区sible. Any other ideas or thoughts? Is there another COM component that supports socket programming?
Thanks in advance.
There are no other COM components present by default that support Sockets.
Other ideas? Ask the user to install the Winsock component or don't use Silverlight.
精彩评论