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
Copy file name to clipboardExpand all lines: articles/logic-apps/workflow-definition-language-functions-reference.md
+3-28Lines changed: 3 additions & 28 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -1046,7 +1046,7 @@ And returns this result:
1046
1046
1047
1047
### base64ToString
1048
1048
1049
-
Return the string version for a base64-encoded string, effectively decoding the base64 string. Use this function rather than [decodeBase64()](#decodeBase64). Although both functions work the same way, `base64ToString()` is preferred.
1049
+
Return the string version for a base64-encoded string, effectively decoding the base64 string. Use this function rather than [decodeBase64()](#decodeBase64), which is deprecated.
1050
1050
1051
1051
> [!NOTE]
1052
1052
> Azure Logic Apps automatically performs base64 encoding and decoding,
@@ -1658,34 +1658,9 @@ And returns this result: `74`
1658
1658
1659
1659
<aname="decodeBase64"></a>
1660
1660
1661
-
### decodeBase64
1661
+
### decodeBase64 (deprecated)
1662
1662
1663
-
Return the string version for a base64-encoded string, effectively decoding the base64 string. Consider using [base64ToString()](#base64ToString) rather than `decodeBase64()`. Although both functions work the same way,
1664
-
`base64ToString()` is preferred.
1665
-
1666
-
```
1667
-
decodeBase64('<value>')
1668
-
```
1669
-
1670
-
| Parameter | Required | Type | Description |
1671
-
| --------- | -------- | ---- | ----------- |
1672
-
| <*value*> | Yes | String | The base64-encoded string to decode |
1673
-
|||||
1674
-
1675
-
| Return value | Type | Description |
1676
-
| ------------ | ---- | ----------- |
1677
-
| <*decoded-base64-string*> | String | The string version for a base64-encoded string |
1678
-
||||
1679
-
1680
-
*Example*
1681
-
1682
-
This example creates a string for a base64-encoded string:
1683
-
1684
-
```
1685
-
decodeBase64('aGVsbG8=')
1686
-
```
1687
-
1688
-
And returns this result: `"hello"`
1663
+
This function is deprecated, so please use [base64ToString()](#base64ToString) instead.
0 commit comments