Skip to content

Commit fc8fd36

Browse files
Merge pull request #250562 from SaibabaBalapur-MSFT/patch-75
(AzureCXP) fixes MicrosoftDocs/azure-docs#114363
2 parents bc00ad0 + 718bfe7 commit fc8fd36

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

articles/active-directory/app-proxy/application-proxy-configure-native-client-application.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -96,7 +96,7 @@ if (authResult != null)
9696
//Use the Access Token to access the Proxy Application
9797
9898
HttpClient httpClient = new HttpClient();
99-
HttpClient.DefaultRequestHeaders.Authorization = new AuthenticationHeaderValue("Bearer", authResult.AccessToken);
99+
httpClient.DefaultRequestHeaders.Authorization = new AuthenticationHeaderValue("Bearer", authResult.AccessToken);
100100
HttpResponseMessage response = await httpClient.GetAsync("<Proxy App Url>");
101101
}
102102
```

0 commit comments

Comments
 (0)