Is legacy winsock available for windows store apps? [closed] - c#

Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
We don’t allow questions seeking recommendations for books, tools, software libraries, and more. You can edit the question so it can be answered with facts and citations.
Closed 7 years ago.
Improve this question
I know that code on windows store which used socket needed to use the StreamSocket class instead of the legacy winsock API (Socket class)
And it is clearly something that prevent me from migrating my open source library whose lots of app would depends.
Now, I've seen that VS 2013 update 3 add "winsock support", also announced here.
Does it means that I can use exactly the goold old and loved Socket ?

Yes, the bulk of the winsock APIs are available for both Windows 8.1 and Windows Phone 8.x Store Apps (and of course Universal Windows Apps in Windows 10). There are still some restrictions around access to loopback addresses etc. but the APIs should be available to you.

Related

Push Notifications for Windows Forms [closed]

Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
We don’t allow questions seeking recommendations for books, tools, software libraries, and more. You can edit the question so it can be answered with facts and citations.
Closed 4 years ago.
Improve this question
I work with desktop application for Windows and I have to add push notification logic, especially receiveng push notification from server. I have read about SignalR and Pushbullet.
SignalR is good but it supports winforms and starts from Windows 8.
PushBullet seems to be good but I still read guides.
So, my questions are:
Do other push frameworks(for winforms) exist?
Is it possible to implement receiveng push notification from server to my app?
Look into WCF and Duplex Services. It can be used to establish a connection between client and server. Here are two links that can help you out.
MSDN: Duplex Services
Example Project for Duplex WCF

A framework for real time messaging between a C++ App and an Xamarin Forms App [closed]

Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
We don’t allow questions seeking recommendations for books, tools, software libraries, and more. You can edit the question so it can be answered with facts and citations.
Closed 6 years ago.
Improve this question
I should implement a communication between a C++ Application and a mobile application developed using Xamarin Forms.
The Xamarin Application is targeted to Android, iOS and Windows.
The communication between the Xamarin Forms Application and the C++ one should be done in real time.
I tried to implement this ZeroMQ but we don't have a PCL for Xamarin. I search a lot for a solution but I did not find.
Is there a framework that can implement a real time communication between a C++ App and an Xamarin Forms App that targets Android, iOS and Windows.
(I'm making the assumption that you are referring to "real-time" communication between the apps)
I would suggest using something like SignalR for the communication. They do seem to have a C++ client, and they support Xamarin. There may be other real-time communication libraries that support both.
I have used SignalR in a Xamarin application, albeit, I was using a pre-Alpha version of SignalR(version 0.5.2 from years ago), but it worked great and continues to work great for our use-case.

Video Editing API Suggestions? [closed]

Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
We don’t allow questions seeking recommendations for books, tools, software libraries, and more. You can edit the question so it can be answered with facts and citations.
Closed 7 years ago.
Improve this question
I have a specific requirement of being able to select arbitrary rectangular regions from a source video and to save that region (for a specific time span) to a separate file.
Ideally, the API would support C#/.NET but we're prepared to do it in C++ if that would yield a better end product.
This software will need to run on Windows machines.
I've looked into Direct Show Editing Services and Media Foundation. I've found conflicting information that says DSES is deprecated, but then to use DSES over MF because MF doesn't focus on video editing that much.
Are there are any other APIs that I should look into?
Can you recommend either of the mentioned APIs for the task at hand?
Thanks in advance!
For video editing in Windows desktop apps, DirectShow remains really the only Windows API for this scenario. See Migrating from DirectShow to Media Foundation
For C#, take a look at DirectShow.NET.
DirectShow is not supported for Windows Store, universal Windows apps, Xbox One, or Windows phone 8.
Also keep in mind that DirectShow is impacted by the "N" editions of Windows. See "Who moved my [Windows Media] Cheese"?

Send notification for iOS using .net or C# [closed]

Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
We don’t allow questions seeking recommendations for books, tools, software libraries, and more. You can edit the question so it can be answered with facts and citations.
Closed 8 years ago.
Improve this question
I want to send push notification on iOS device using C# or .net code. But I always failed to achieve this. Please refer best tutorial or code for this.
This seems to be a broad question and since you have only asked for the tutorial links have a look at following:
Add iPhone push notification using ASP.NET server
https://github.com/Redth/PushSharp
In a purely .Net world you might well use a technology called SignalR for this - I would look and see if there are SignalR clients available for iOS. I would be surprised if there were not...

Unable to download EMDK for windows mobile 5.0 application [closed]

Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
We don’t allow questions seeking recommendations for books, tools, software libraries, and more. You can edit the question so it can be answered with facts and citations.
Closed 6 years ago.
Improve this question
I am a newbie in this field and I want to create a Windows Mobile application for my Motorola MC70 device.
My problem is that I am trying to download EMDK but I can't find it on internet.
I found various links on Google:-
http://support.symbol.com/
https://portal.motorolasolutions.com/Support/US-EN
but all in vain.....
Can anyone give me the exact link to download EMDK for Windows Mobile???
Thanks in Advance...
You will find the handheld's Smybol/Motorola/Zebra SDK (currently named EMDK) at 'current' the owner site of the device's brand (as of this writing this is Zebra). Follow the current site's navigation and look for support or download and then the device model. You will then probably find the 'SDK'.
Reminder: internet and sites will always change and so any provided link may no longer work. Then use the site's navigation or contact support.
[Links deleted as no longer valid, no new links as these may change at any time]

Categories