Skip to content

Make it clearer where GetForegroundWindow method comes from #49414

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Open
wants to merge 1 commit into
base: main
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 3 additions & 0 deletions sdk/identity/Azure.Identity.Broker/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -55,6 +55,9 @@ var credential = new InteractiveBrowserCredential(

// Use the credential to authenticate a secret client
var client = new SecretClient(new Uri("https://myvault.vault.azure.net/"), credential);

[DllImport("user32.dll")]
static extern IntPtr GetForegroundWindow();
Comment on lines +59 to +60
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Thanks for the contribution!

This is failing the build because the exact same code needs to be placed in this file in the same location. However, the file in question already contains this code, just outside the snippet, so for this to build, you'll need to add it to the .cs file as so:

#if SNIPPET
[DllImport("user32.dll")]
static extern IntPtr GetForegroundWindow();
#endif

```

To bypass the account selection dialog and use the default broker account, set the [InteractiveBrowserCredentialBrokerOptions.UseDefaultBrokerAccount](https://learn.microsoft.com/dotnet/api/azure.identity.broker.interactivebrowsercredentialbrokeroptions) property:
Expand Down
Loading