É possível customizar um nó .NETCompute para acessar propriedades que foram associadas ao fluxo de mensagens no qual o nó está incluído.
#region UserCode
// Inclua o código do usuário nessa região para criar uma nova mensagem de saída
int intProperty = (int)this.GetUserDefinedProperty("intProperty");
string stringProperty = this.GetUserDefinedPropertyAsString("stringProperty");
NBElement msg = outputRoot.CreateLastChildUsingNewParser(NBParsers.XMLNSC.ParserName).CreateFirstChild(null, "Message");
NBElement el2 = msg.CreateFirstChild("Element2");
NBElement el1 = msg.CreateFirstChild("Element1");
el1.SetValue("The message flow user defined property named intProperty has the value "+intProperty.ToString());
el2.SetValue("The message flow user defined property named stringProperty has the value "+stringProperty);
#endregion UserCode
<Message>
<Element1>The message flow user defined property named intProperty has the value 23</Element1>
<Element2>The message flow user defined property named stringProperty has the value Hello World!</Element2>
</Message>