Files
qController/qController.Standard/Classes/Communication/QFinder.cs
T
jwetzell c0c1d7a9bb * qConnectionPage.xaml.cs:
* QFinder.cs: Update zeroconf string

* README.md:
* packages.config:
* qController.iOS.csproj:
* qController.Droid.csproj:
* qController.csproj: Update Dependencies

* QStorage.cs: Update Log Level
2022-02-03 14:42:38 -06:00

24 lines
678 B
C#

//Currently unused would like to reimplement eventually
//Currently being done in qConnectionPage.xaml.cs Scan() method
//TODO: Implement this along with a way of getting active Instances and # of workspaces for an instance
using Serilog;
using System.Collections.Generic;
using Zeroconf;
namespace qController.Communication
{
public class QFinder
{
public QFinder()
{
}
public async void SearchForWorkspaces()
{
Log.Debug("QFINDER - Scanning Started");
IReadOnlyList<IZeroconfHost> results = await ZeroconfResolver.ResolveAsync("_qlab._tcp.local.");
Log.Debug("QFINDER - Scanning Done");
}
}
}