Consider the following scenario:
- You create a new Microsoft BizTalk Server 2010 or in Microsoft BizTalk Server 2013 project in Microsoft Visual Studio 2010.
- You create one orchestration to the project.
- You create the following two variables in the orchestration:
- var1: System.Xml.XmlDocument
- var2: System.String
- You add one expression shape to the orchestration.
- You add the following code to the expression shape:
var1 = new System.Xml.XmlDocument(); var2 = var1.InnerText;
'var1.InnerText': .NET property is write-only because it does not have a get accessor.