Skip to main content

All Questions

Tagged with
1 vote
2 answers
650 views

C#: Problem receiving UDP packet from device connected via mobile hotspot

I'm having a problem with simple UDP packet receive from a device connected remotely via Windows mobile hotspot. The device (an esp32 wifi board) connects to the laptop via wifi, DHCP parameters are ...
Pipeloops's user avatar
0 votes
1 answer
889 views

How to control Windows 10 Mobile Hotpot settings from C# Windows application [duplicate]

I'm developing a Windows application in C# and distribute it with a PC with Windows Home operating system to customers. I'd like to make the PC a wireless hotspot. I tried creating a hosted network, ...
Yaron Habot's user avatar
0 votes
1 answer
770 views

Start inbuilt windows MobileHotspot when not connected to a WiFi network

I am trying to spin up mobile hotspot on a windows 10 laptop using a c# program.The requirement is similar to this, but I wont be able to use the NetworkOperatorTetheringManager class since it needs ...
wardaddy's user avatar
  • 413
1 vote
1 answer
422 views

Initializing Mobile Hotspot using bluetooth C#

I need to create a service that starts a mobile hotspot using bluetooth. I've found the code to create a hotspot service, but this creates a hotspot with the Ethernet adapter. I've read the ...
Simen Nielsen's user avatar
3 votes
1 answer
2k views

.NET UDP Client use over internet not working

I have a rather complex client server app that has three separate UDP connections. One connection (port 50001) is for control of a device. This connection listens for connections from a remote device ...
Tom's user avatar
  • 567
0 votes
0 answers
353 views

Android game crashes when attempting to start wifi hotspots

I have two methods that will try to start the WiFi hotspot on the android device so that others can connect and play the game. The problem is both method have problems and don't work. The first ...
Henjin's user avatar
  • 539
1 vote
1 answer
2k views

How to get/set the IP of a hosted network

I created a virtual WiFi hotspot by the following code, I now need to get its IP address but I actually don't know its network interface's name (as no constant name, 'Local Connection *16' maybe). ...
Simon Leung's user avatar
2 votes
1 answer
3k views

Turn on/off WiFi hotspot programmatically

I need help in creating a C# script that set a android WiFi in hotspot mode. Here is the code that I managed to create. public bool setAPEnabled(bool enabled) { using (AndroidJavaObject ...
BackLogers's user avatar
0 votes
1 answer
145 views

How to use NetworkOperatorHotspotAuthenticationTrigger in UWP

I want develop an UWP app use to login to paid wifi. So I have refered to NetworkOperatorHotspotAuthenticationTrigger. When I register background task with that trigger, I was received "Access is ...
ndthanhdev's user avatar