IIdentityApiSetClaim Method

Set the new claim into identity

Example

C#
var identityApi = ctx.Use<IIdentityApi>();
identityApi.SetClaim("CPR", "123456789");

Definition

Namespace: Casewhere.Runtime.DSL.Api
Assembly: Casewhere.Runtime (in Casewhere.Runtime.dll) Version: 2.9.8.6
C#
void SetClaim(
	string type,
	params string[] values
)

Parameters

type  String
Claim type
values  String
Claim values

See Also