I have used MyToolkit to Embed a Youtube Video in my Windows phone 8 application it works fine with network connection but when i turn off the WiFi and start the video in my app it crash, So i want to show a message to tell the user " No Network connection " and navigate back to "MainPage.xaml" instead of crashing, This is the code i use
private async void PhoneApplicationPage_Loaded(object sender, RoutedEventArgs e)
{
var videoUri = await MyToolkit.Multimedia.YouTube.GetVideoUriAsync("Youtube_ID", MyToolkit.Multimedia.YouTubeQuality.Quality480P, MyToolkit.Multimedia.YouTubeQuality.Quality480P);
if (videoUri != null)
player.Source = videoUri.Uri;
}
and this is the Xaml code
<Grid HorizontalAlignment="Stretch" Height="Auto" VerticalAlignment="Top" Width="Auto">
<mmppf:MediaPlayer x:Name="player" HorizontalAlignment="Stretch" Width="Auto"/>
</Grid>
Thanks
Surround your await method in a try catch: