You can use Uri Schemes to Launch another apps to manage requests, for example to make a telephone call:
await Launcher.LaunchUriAsync(new Uri("tel: " + number));
I need use calendar Uri schemes to add an appointment to Calendar (day, hour and title) in UWP App, but I have no idea which is the standar Uri scheme for calendar, if exist.
Another option is use "Outlookcal" to launch Outlook (instead of use standar uri scheme), but I not able to find to syntaxis to add an appointment with day, hour and title, I only know how launch Outlook Calendar:
await Launcher.LaunchUriAsync(new Uri("outlookcal:"));
Anyone knows how use calendar Uri scheme to add an appointment, or add an appointment with Outlookcal Uri scheme?
You don't have to use URI scheme (it does not seem documented anywhere). It is possible to create appointments directly using the UWP API.