Click or drag to resize

IIdentityApiGetUserClaims Method

Get the claim collection of the current user.

Namespace: Casewhere.Runtime.DSL.Api
Assembly: Casewhere.Runtime (in Casewhere.Runtime.dll) Version: 2.8.5.0
Syntax
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