You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
| InputClaim | item | string | The ClaimType to be added to the output claim. |
30
30
| InputClaim | collection | stringCollection |[Optional] If specified, the claims transformation copies the items from this collection, and adds the item to the end of the output collection claim. |
31
-
| OutputClaim | collection | stringCollection | The ClaimTypes that are produced after this ClaimsTransformation has been invoked. |
31
+
| OutputClaim | collection | stringCollection | The ClaimType that is produced after this claims transformation has been invoked, with the value specified in the input claim. |
32
32
33
33
Use this claims transformation to add a string to a new or existing stringCollection. It's commonly used in a **AAD-UserWriteUsingAlternativeSecurityId** technical profile. Before a new social account is created, **CreateOtherMailsFromEmail** claims transformation reads the ClaimType and adds the value to the **otherMails** ClaimType.
34
34
@@ -56,13 +56,13 @@ The following claims transformation adds the **email** ClaimType to **otherMails
56
56
57
57
## AddParameterToStringCollection
58
58
59
-
Adds a string parameter to a new stringCollection claim.
59
+
Adds a string parameter to a new unique values stringCollection claim.
60
60
61
61
| Item | TransformationClaimType | Data Type | Notes |
| InputClaim | collection | stringCollection |[Optional] If specified, the claims transformation copies the items from this collection, and adds the item to the end of the output collection claim. |
64
64
| InputParameter | item | string | The value to be added to the output claim. |
65
-
| OutputClaim | collection | stringCollection | The ClaimTypes that will be produced after this ClaimsTransformation has been invoked. |
65
+
| OutputClaim | collection | stringCollection | The ClaimType that is produced after this claims transformation has been invoked, with the value specified in the input parameter. |
66
66
67
67
Use this claims transformation to add a string value to a new or existing stringCollection. The following example adds a constant email address ([email protected]) to the **otherMails** claim.
0 commit comments