Skip to content
This repository was archived by the owner on Nov 14, 2019. It is now read-only.

Commit 650312c

Browse files
committed
Updated README.MD and removed some dead code
1 parent 083c68d commit 650312c

File tree

2 files changed

+1
-3
lines changed

2 files changed

+1
-3
lines changed

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ NativeClient-DotNet
33

44
This sample demonstrates a .Net WPF application calling a web API that is secured using Azure AD. The .Net application uses the Active Directory Authentication Library (ADAL) to obtain a JWT access token through the OAuth 2.0 protocol. The access token is sent to the web API to authenticate the user.
55

6-
For more information about how the protocols work in this scenario and other scenarios, see the [Authentication Scenarios for Azure AD](http://msdn.microsoft.com/aad) document.
6+
For more information about how the protocols work in this scenario and other scenarios, see [Authentication Scenarios for Azure AD](http://go.microsoft.com/fwlink/?LinkId=394414).
77

88
## How To Run This Sample
99

TodoListClient/MainWindow.xaml.cs

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -205,8 +205,6 @@ private async void AddTodoItem(object sender, RoutedEventArgs e)
205205
//
206206
// Call the To Do service.
207207
//
208-
TodoItem item = new TodoItem();
209-
item.Title = TodoText.Text;
210208

211209
// Once the token has been returned by ADAL, add it to the http authorization header, before making the call to access the To Do service.
212210
httpClient.DefaultRequestHeaders.Authorization = new AuthenticationHeaderValue("Bearer", result.AccessToken);

0 commit comments

Comments
 (0)