Home Page › Forums › BizTalk 2004 – BizTalk 2010 › MSDN Policy Chaining Sample › Re: MSDN Policy Chaining Sample
July 25, 2008 at 7:44 AM
#20236
I’m confirming that this code works fine:
public static void Execute(string policyName, TypedXmlDocument
txd)Policy
policy = new Policy(policyName);
object[] facts = new object[1];
facts[0] = txd;
policy.Execute(facts);
policy.Dispose();
}