I am experimenting with Project Rome and I am facing some issue with finding my Xbox console.
I can find my tablet, another laptop but I cannot find my Xbox console - it is a developer kit. I also tried to switch it to retail console but no difference.
private RemoteSystemWatcher remoteSystemWatcher;
remoteSystemWatcher = RemoteSystem.CreateWatcher();
remoteSystemWatcher.RemoteSystemAdded += OnDeviceAdded;
remoteSystemWatcher.Start();
private void OnDeviceAdded(RemoteSystemWatcher sender, RemoteSystemAddedEventArgs args)
{
}
I also tried to find Xbox console via HostName or IP, unfortunately it raises exception. Catastrophic failure (Exception from HRESULT: 0x8000FFFF (E_UNEXPECTED))
. It seems like the same issue with this method as described here.
await RemoteSystem.FindByHostNameAsync(new HostName("...."));