Skip to content

Commit 450747f

Browse files
authored
Merge pull request #105781 from yoelhor/patch-29
Update stringcollection-transformations.md
2 parents b20e57a + 394b2b9 commit 450747f

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

articles/active-directory-b2c/stringcollection-transformations.md

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ manager: celestedg
99
ms.service: active-directory
1010
ms.workload: identity
1111
ms.topic: reference
12-
ms.date: 02/03/2020
12+
ms.date: 02/27/2020
1313
ms.author: marsma
1414
ms.subservice: B2C
1515
---
@@ -22,13 +22,13 @@ This article provides examples for using the string collection claims transforma
2222

2323
## AddItemToStringCollection
2424

25-
Adds a string claim to a new stringCollection claim.
25+
Adds a string claim to a new unique values stringCollection claim.
2626

2727
| Item | TransformationClaimType | Data Type | Notes |
2828
| ---- | ----------------------- | --------- | ----- |
2929
| InputClaim | item | string | The ClaimType to be added to the output claim. |
3030
| 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. |
3232

3333
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.
3434

@@ -56,13 +56,13 @@ The following claims transformation adds the **email** ClaimType to **otherMails
5656

5757
## AddParameterToStringCollection
5858

59-
Adds a string parameter to a new stringCollection claim.
59+
Adds a string parameter to a new unique values stringCollection claim.
6060

6161
| Item | TransformationClaimType | Data Type | Notes |
6262
| ---- | ----------------------- | --------- | ----- |
6363
| 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. |
6464
| 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. |
6666

6767
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.
6868

0 commit comments

Comments
 (0)