次の方法で共有


ManagedIdentityApplicationBuilder.WithClientCapabilities Method

Definition

Overloads

WithClientCapabilities(IEnumerable<String>)

Microsoft Identity specific OIDC extension that allows resource challenges to be resolved without interaction. Allows configuration of one or more client capabilities, e.g. "llt"

WithClientCapabilities(IEnumerable<String>)

Microsoft Identity specific OIDC extension that allows resource challenges to be resolved without interaction. Allows configuration of one or more client capabilities, e.g. "llt"

public Microsoft.Identity.Client.ManagedIdentityApplicationBuilder WithClientCapabilities (System.Collections.Generic.IEnumerable<string> clientCapabilities);
member this.WithClientCapabilities : seq<string> -> Microsoft.Identity.Client.ManagedIdentityApplicationBuilder
Public Function WithClientCapabilities (clientCapabilities As IEnumerable(Of String)) As ManagedIdentityApplicationBuilder

Parameters

clientCapabilities
IEnumerable<String>

Returns

Remarks

MSAL will transform these into special claims request. See https://openid.net/specs/openid-connect-core-1_0-final.html#ClaimsParameter for details on claim requests. This is an experimental API. The method signature may change in the future without involving a major version upgrade. For more details see https://aka.ms/msal-net-claims-request

Applies to