IIdentityApiGetUserClaims Method

Get the claim collection of the current user.

Definition

Namespace: Casewhere.Runtime.DSL.Api
Assembly: Casewhere.Runtime (in Casewhere.Runtime.dll) Version: 2.9.8.6
C#
ClaimsCollection GetUserClaims()

Return Value

ClaimsCollection
A claim Collection if found, otherwise null

Example

C#
                    var identityApi = ctx.Use<IIdentityApi>();
var claimsCollection = identityApi.GetUserClaims();
                  

See Also