原则:上下文属性访问语句必须出现在消息构造语句后。否则出现访问未构造消息属性的错误。
MyMessage.PartA = something;
MyMessage(SomeContextProeprty) = someValue;
MyMessage.PartB = somethingElse;
Error!

MyMessage.PartA = something;
MyMessage.PartB = somethingElse;
MyMessage(SomeContextProeprty) = someValue;

OK!

Original: yossidahan blog "Order of operations in an assign shape"

相关文章:

  • 2022-12-23
  • 2022-12-23
  • 2023-03-08
  • 2021-04-14
  • 2021-09-21
  • 2021-12-17
  • 2022-12-23
  • 2022-03-01
猜你喜欢
  • 2022-12-23
  • 2021-09-30
  • 2022-12-23
  • 2022-12-23
  • 2021-11-30
  • 2021-12-13
  • 2022-12-23
相关资源
相似解决方案