Skip to content

Commit a69369b

Browse files
Update functions-for-customizing-application-data.md
1 parent 533b231 commit a69369b

File tree

1 file changed

+7
-7
lines changed

1 file changed

+7
-7
lines changed

articles/active-directory/app-provisioning/functions-for-customizing-application-data.md

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -116,7 +116,7 @@ In other words, it returns 0 in all cases except when the corresponding bits of
116116

117117
| Name | Required/ Repeating | Type | Notes |
118118
| --- | --- | --- | --- |
119-
| **expression** |Required | expression | Any valid expression |
119+
| **Expression** |Required | expression | Any valid expression |
120120

121121
**Example:**
122122
`CBool([attribute1] = [attribute2])`
@@ -134,7 +134,7 @@ The CDate function returns a UTC DateTime from a string. DateTime is not a nativ
134134

135135
| Name | Required/ Repeating | Type | Notes |
136136
| --- | --- | --- | --- |
137-
| **expression** |Required | expression | Any valid string that represents a date/time. For supported formats, refer to [.NET custom date and time format strings](/dotnet/standard/base-types/custom-date-and-time-format-strings). |
137+
| **Expression** |Required | Expression | Any valid string that represents a date/time. For supported formats, refer to [.NET custom date and time format strings](/dotnet/standard/base-types/custom-date-and-time-format-strings). |
138138

139139
**Remarks:**
140140
The returned string is always in UTC and follows the format **M/d/yyyy h:mm:ss tt**.
@@ -438,7 +438,7 @@ The IgnoreFlowIfNullOrEmpty function instructs the provisioning service to ignor
438438

439439
| Name | Required/ Repeating | Type | Notes |
440440
| --- | --- | --- | --- |
441-
| **expression** | Required | expression | Expression to be evaluated |
441+
| **Expression** | Required | Expression | Expression to be evaluated |
442442

443443
**Example 1: Don't flow an attribute if it is null** <br>
444444
`IgnoreFlowIfNullOrEmpty([department])` <br>
@@ -506,7 +506,7 @@ If the expression evaluates to Null, then the IsNull function returns true. For
506506

507507
| Name | Required/ Repeating | Type | Notes |
508508
| --- | --- | --- | --- |
509-
| **expression** |Required |expression |Expression to be evaluated |
509+
| **Expression** |Required |Expression |Expression to be evaluated |
510510

511511
**Example:**
512512
`IsNull([displayName])`
@@ -526,7 +526,7 @@ The inverse of this function is named IsPresent.
526526

527527
| Name | Required/ Repeating | Type | Notes |
528528
| --- | --- | --- | --- |
529-
| **expression** |Required |expression |Expression to be evaluated |
529+
| **Expression** |Required |Expression |Expression to be evaluated |
530530

531531
**Example:**
532532
`IsNullOrEmpty([displayName])`
@@ -545,7 +545,7 @@ If the expression evaluates to a string that is not Null and is not empty, then
545545

546546
| Name | Required/ Repeating | Type | Notes |
547547
| --- | --- | --- | --- |
548-
| **expression** |Required |expression |Expression to be evaluated |
548+
| **Expression** |Required |Expression |Expression to be evaluated |
549549

550550
**Example:**
551551
`Switch(IsPresent([directManager]),[directManager], IsPresent([skiplevelManager]),[skiplevelManager], IsPresent([director]),[director])`
@@ -562,7 +562,7 @@ If the expression can be evaluated to a string type, then the IsString function
562562

563563
| Name | Required/ Repeating | Type | Notes |
564564
| --- | --- | --- | --- |
565-
| **expression** |Required |expression |Expression to be evaluated |
565+
| **Expression** |Required |Expression |Expression to be evaluated |
566566

567567
---
568568
### Item

0 commit comments

Comments
 (0)