0
아래 Universal App (Windows 10) 코드에서 Skype를 열고 usertocall이 호출됩니다. 이 URL이 변경된 경우 새 Uri (@ "ms-Onedrive :"); OneDrive 응용 프로그램이 열립니다. Onedrive에 저장된 특정 문서에 액세스하는 데 적합한 Uri는 무엇입니까?OneDrive의 특정 문서에 액세스하기위한 Uri
private async void button_Click(object sender, RoutedEventArgs e)
{
var uriSkype = new Uri(@"skype:(usertocall)?call");
// Set the option to show a warning
var promptOptions = new Windows.System.LauncherOptions();
// promptOptions.TreatAsUntrusted = true;
// Launch the URI
var success = await Windows.System.Launcher.LaunchUriAsync(uriSkype);
if (success)
{
// URI launched
}
else
{
// URI launch failed
}
}
실제로 동일한 장치 (Hololens)에서 실행중인 다른 UniversalApp에서 OneDrive App을 호출하려고합니다. – ronconsoda