-
Notifications
You must be signed in to change notification settings - Fork 4.9k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Question: .net core and wifi direct? #35479
Comments
Tagging subscribers to this area: @dotnet/ncl |
That is generally function of your os e.g. drivers & routing. There is nothing AFAIK in .NET preventing the use, as long as you get IP configured. There is no API to configure interfaces - wirelesss or wired or to manipulate wireless setting. |
I mean something like this: https://docs.microsoft.com/en-us/uwp/api/windows.devices.wifidirect.wifidirectdevice It was a pain to use it from a .net console application : So I wanted to know if it is any better in .net core See what I mean? It was meant to be used by UWP apps, not console |
.NET 5 will have improvements to interop with WinRT APIs. Many of the Windows WinRT API (Windows.* namespaces) can be used by both UWP apps as well as console apps. The documentation for the WinRT API will say whether or not it can be used in Windows console apps as well as Windows UWP apps. The current tooling in Visual Studio sometimes make that difficult to interop currently. But improvements are forthcoming. |
Awesome! Thank you! Anything I can read? Or should I just wait? |
Closing as answered. |
Is it possible to use wifidirect from a .net core console application? Any hints on how to make it?
The text was updated successfully, but these errors were encountered: