We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent edfe657 commit 2087742Copy full SHA for 2087742
README.md
@@ -12,12 +12,21 @@ This component is useful when you need to perform any simple action on either th
12
## Remarks ##
13
Throws ArgumentException if any of the required parameters is not specified.
14
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
24
## Examples ##
25
```c#
26
//Promotes the value Test to the property Namespace#Name
27
(ctx, msg) =>
28
{
- ctx.Promote(\"Name\",\"Namespace\", \"Test\"); return msg;
29
+ ctx.Promote("Name","Namespace", "Test"); return msg;
30
};
31
```
32
0 commit comments