Click or drag to resize

IIdentityApiSetClaimForUserSession Method

Update the claim set of the given UserSession and this update will affect to the access token right after
Examples
var identityApi = ctx.Use<IIdentityApi>();
identityApi.SetClaimForUserSession("00000000-0000-0000-0000-000000000000", "CPR", "123456789");

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

Parameters

userSessionId
Type: SystemGuid

[Missing <param name="userSessionId"/> documentation for "M:Casewhere.Runtime.DSL.Api.IIdentityApi.SetClaimForUserSession(System.Guid,System.String,System.String[])"]

type
Type: SystemString
Claim type
values
Type: SystemString
Claim values
See Also