Skip to content

Commit 2087742

Browse files
committed
Added namespace section
1 parent edfe657 commit 2087742

File tree

1 file changed

+10
-1
lines changed

1 file changed

+10
-1
lines changed

README.md

Lines changed: 10 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,12 +12,21 @@ This component is useful when you need to perform any simple action on either th
1212
## Remarks ##
1313
Throws ArgumentException if any of the required parameters is not specified.
1414

15+
The following namespaces are included in every snippet:
16+
17+
* System
18+
* Microsoft.BizTalk.Component.Interop
19+
* Microsoft.BizTalk.Streaming
20+
* Microsoft.BizTalk.Message.Interop
21+
* System.Xml
22+
* Microsoft.BizTalk.XPath
23+
1524
## Examples ##
1625
```c#
1726
//Promotes the value Test to the property Namespace#Name
1827
(ctx, msg) =>
1928
{
20-
ctx.Promote(\"Name\",\"Namespace\", \"Test\"); return msg;
29+
ctx.Promote("Name","Namespace", "Test"); return msg;
2130
};
2231
```
2332
```c#

0 commit comments

Comments
 (0)