We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 2f30722 commit 460ee37Copy full SHA for 460ee37
articles/active-directory/develop/msal-net-aad-b2c-considerations.md
@@ -67,10 +67,10 @@ Acquiring a token for an Azure AD B2C-protected API in a public client applicati
67
68
```csharp
69
IEnumerable<IAccount> accounts = await application.GetAccountsAsync();
70
-AuthenticationResult ar = await application .AcquireTokenInteractive(scopes)
71
- .WithAccount(GetAccountByPolicy(accounts, policy))
72
- .WithParentActivityOrWindow(ParentActivityOrWindow)
73
- .ExecuteAsync();
+AuthenticationResult ar = await application.AcquireTokenInteractive(scopes)
+ .WithAccount(GetAccountByPolicy(accounts, policy))
+ .WithParentActivityOrWindow(ParentActivityOrWindow)
+ .ExecuteAsync();
74
```
75
76
In the preceding code snippet:
0 commit comments