Skip to content

Commit 460ee37

Browse files
committed
code snippet fix
1 parent 2f30722 commit 460ee37

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

articles/active-directory/develop/msal-net-aad-b2c-considerations.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -67,10 +67,10 @@ Acquiring a token for an Azure AD B2C-protected API in a public client applicati
6767

6868
```csharp
6969
IEnumerable<IAccount> accounts = await application.GetAccountsAsync();
70-
AuthenticationResult ar = await application .AcquireTokenInteractive(scopes)
71-
.WithAccount(GetAccountByPolicy(accounts, policy))
72-
.WithParentActivityOrWindow(ParentActivityOrWindow)
73-
.ExecuteAsync();
70+
AuthenticationResult ar = await application.AcquireTokenInteractive(scopes)
71+
.WithAccount(GetAccountByPolicy(accounts, policy))
72+
.WithParentActivityOrWindow(ParentActivityOrWindow)
73+
.ExecuteAsync();
7474
```
7575

7676
In the preceding code snippet:

0 commit comments

Comments
 (0)