mirror of
https://github.com/jwetzell/qController.git
synced 2026-08-20 14:39:12 +00:00
initial working maui migration with android only
This commit is contained in:
@@ -0,0 +1,23 @@
|
||||
//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");
|
||||
}
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user