コード例 #1
0
ファイル: LogOut.xaml.cs プロジェクト: stevenh77/RibbonMenu
 // Executes when the user navigates to this page.
 protected override void OnNavigatedTo(NavigationEventArgs e)
 {
     AuthenticationServiceClient client;
     client = new AuthenticationServiceClient();
     client.LogOutCompleted += LogOutCompleted;
     client.LogOutAsync();
 }
コード例 #2
0
        // Executes when the user navigates to this page.
        protected override void OnNavigatedTo(NavigationEventArgs e)
        {
            AuthenticationServiceClient client;

            client = new AuthenticationServiceClient();
            client.LogOutCompleted += LogOutCompleted;
            client.LogOutAsync();
        }