We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 6637f66 commit 68ad60bCopy full SHA for 68ad60b
1 file changed
msal-dotnet-articles/acquiring-tokens/desktop-mobile/integrated-windows-authentication.md
@@ -43,9 +43,9 @@ try
43
// Can't get a token silently, go interactive
44
catch (MsalUiRequiredException ex)
45
{
46
- var atiBuilder = app.AcquireTokenInteractive(scopes)
47
- .WithAccount(PublicClientApplication.OperatingSystemAccount);
48
- result = await atiBuilder.ExecuteAsync();
+ result = app.AcquireTokenInteractive(scopes)
+ .WithAccount(PublicClientApplication.OperatingSystemAccount)
+ .ExecuteAsync();
49
}
50
51
```
0 commit comments