I am currently porting a .Net project to UWP and I have no access to most of the System.Net namespaces, ergo I cant use the IPAddress class to get the Broadcast property I need
socket?.Send(discoveringMessage, discoveringMessage.Length, new IPEndPoint(IPAddress.Broadcast, port));
Is there any replacements or workarounds for this issue?
Thanks a lot