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 f1cc55a commit 6506e6eCopy full SHA for 6506e6e
articles/active-directory/develop/msal-net-client-assertions.md
@@ -52,6 +52,12 @@ string signedClientAssertion = ComputeAssertion();
52
app = ConfidentialClientApplicationBuilder.Create(config.ClientId)
53
.WithClientAssertion(() => { return GetSignedClientAssertion(); } )
54
.Build();
55
+
56
+// or in async manner
57
58
+app = ConfidentialClientApplicationBuilder.Create(config.ClientId)
59
+ .WithClientAssertion(async cancellationToken => { return await GetClientAssertionAsync(cancellationToken); })
60
+ .Build();
61
```
62
63
The [claims expected by Azure AD](active-directory-certificate-credentials.md) in the signed assertion are:
0 commit comments