Click or drag to resize

IIdentityApi.SetClaim Method

Set the new claim into identity
Example
C#
var identityApi = ctx.Use<IIdentityApi>();
identityApi.SetClaim("CPR", "123456789");

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

Parameters

type  String
Claim type
values  String[]
Claim values
See Also