Click or drag to resize

IIdentityApiSetClaimForSPIdPSession Method

Update the claim set of the given SPIdPSession and this update will affect to the access token later
Example
C#
var identityApi = ctx.Use<IIdentityApi>();
identityApi.SetClaimForSPIdPSession("00000000-0000-0000-0000-000000000000", "CPR", "123456789");

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

Parameters

spIdPSessionId  Guid
type  String
Claim type
values  String
Claim values
See Also