Skip to content

Commit 83fca11

Browse files
committed
Work on feedback
1 parent ef7957c commit 83fca11

File tree

2 files changed

+5
-9
lines changed

2 files changed

+5
-9
lines changed

articles/active-directory/external-identities/customers/tutorial-desktop-wpf-dotnet-sign-in-build-app.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
---
22
title: "Tutorial: Authenticate users to your WPF desktop application"
3-
description: Learn about how to call a protected web API from your WPF desktop app.
3+
description: Learn how to sign in and sign out user to your WPF desktop app.
44
services: active-directory
55
author: SHERMANOUKO
66
manager: mwongerapk
@@ -242,8 +242,8 @@ Modify the *MainWindow.xaml* file to add the UI elements for the app. Open the *
242242

243243
This code adds key UI elements. The methods and objects that handles the functionality of the UI elements are defined in the *MainWindow.xaml.cs* file that we create in the next step.
244244

245-
- A button that signs in the user. This button calls the `SignInButton_Click` method when clicked on by the user.
246-
- A button that signs out the user. This button calls the `SignOutButton_Click` method when clicked on by the user.
245+
- A button that signs in the user. `SignInButton_Click` method is called when the user selects this button.
246+
- A button that signs out the user. `SignOutButton_Click` method is called when the user selects this button.
247247
- A text box that displays the authentication result details after the user attempts to sign in. Information displayed here's returned by the `ResultText` object.
248248
- A text box that displays the token details after the user successfully signs in. Information displayed here's returned by the `TokenInfoText` object.
249249

articles/active-directory/external-identities/customers/tutorial-desktop-wpf-dotnet-sign-in-prepare-tenant.md

Lines changed: 2 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
---
2-
title: "Tutorial: Register and configure .NET WPF app authentication details in a customer tenant"
2+
title: "Tutorial: Prepare your customer tenant to sign in user in .NET WPF application"
33
description: Learn about how to prepare your Azure Active Directory (Azure AD) for customers tenant to sign in users to your .NET WPF application
44
services: active-directory
55
author: SHERMANOUKO
@@ -12,7 +12,7 @@ ms.topic: tutorial
1212
ms.date: 07/26/2023
1313
---
1414

15-
# Tutorial: Register and configure .NET WPF app authentication details in a customer tenant
15+
# Tutorial: Prepare your customer tenant to sign in user in .NET WPF application
1616

1717
The first step in securing your applications is to register them. In this tutorial, you prepare your Azure Active Directory (Azure AD) for customers tenant for authentication. This tutorial is part of a series that guides you to add authentication to a .NET Windows Presentation Form (WPF) app that signs in and signs out users using Azure AD for customers.
1818

@@ -26,10 +26,6 @@ In this tutorial, you learn how to:
2626
2727
## Prerequisites
2828

29-
- [.NET 7.0](https://dotnet.microsoft.com/download/dotnet/7.0) or later.
30-
31-
- [Visual Studio 2022](https://code.visualstudio.com/download) or another code editor.
32-
3329
- Azure AD for customers tenant. If you don't already have one, [sign up for a free trial](https://aka.ms/ciam-free-trial?wt.mc_id=ciamcustomertenantfreetrial_linkclick_content_cnl).
3430

3531
## Register the desktop app

0 commit comments

Comments
 (0)