随笔 - 333, 文章 - 0, 评论 - 46, 阅读 - 12万

导航

< 2025年1月 >
29 30 31 1 2 3 4
5 6 7 8 9 10 11
12 13 14 15 16 17 18
19 20 21 22 23 24 25
26 27 28 29 30 31 1
2 3 4 5 6 7 8

.NET Class消息类型

Posted on   鸡尾虾的壳  阅读(156)  评论(0编辑  收藏  举报

例子:
   [Serializable]
   public class MsgClass
   {
      [PropertyAttribute(typeof(PropertySchemaForClass.Property2))]
      [DistinguishedFieldAttribute()]
      public String StrField;

      [DistinguishedFieldAttribute()]
      public int IntField;
   }
   定义Namespace为“PropertySchemaForClass”的Property Schema,其中包含"Property2"的Property。并在Class Project中添加对它的dll引用。
   类申明为[Serializable]。
  
   StrField与"Property2"建立了Promote Binding关系。
   StrField,IntField都属于DistinguishedField。

   在Orchestration中,申明MsgClass类型的消息。在Message Assign Shape中,先调用MsgClass类的构造函数,然后给类属性赋值。

点击右上角即可分享
微信分享提示