Is XBox One capable of accessing UNC shares? Specifically, does a code like this:
StorageFolder folder = await StorageFolder.GetFolderFromPathAsync(@"\\myComputer\MySharedFolder");
StorageFile file = await folder.GetFileAsync("MyFile.mp4");
var stream = await file.OpenAsync(Windows.Storage.FileAccessMode.Read);
myMediaElement.SetSource(stream, file.ContentType);
Work on XBox One?