必须将 OperationContext.Current.OutgoingMessageProperties 添加到传出 BizTalk 消息 如何在 BizTalk 中实现以下代码?
ConcurrentPrograms_ARClient client1 = new ConcurrentPrograms_ARClient(binding, address);
using (new OperationContextScope(client1.InnerChannel))
{
OperationContext.Current.OutgoingMessageProperties.Add("Property Name", "Property Value");
client1.OPERATION(params...);
}