Example #1
0
 /// <summary>
 ///     <para>Initializes an instance of the <see cref="MessagePart"/> class.</para>
 /// </summary>
 /// <param name="propertyCollection">
 /// The <see cref="PropertyCollection"/> for storing of message properties.
 /// </param>
 protected MessagePart(PropertyCollection propertyCollection)
 {
     this.propertyCollection = propertyCollection;
 }
 /// <summary>
 ///     <para>Initializes an instance of the <see cref="WarehouseAdapter"/> class.</para>
 /// </summary>
 /// <param name="configuration">
 /// Configuration properties.
 /// </param>
 /// <param name="adapterId">
 /// The Id string of the adapter.
 /// </param>
 public WarehouseAdapter(Imi.Framework.Messaging.Engine.PropertyCollection configuration, string adapterId)
     : base(configuration, adapterId)
 {
     pollTimerCollection = new List <Timer>();
 }
Example #3
0
 /// <summary>
 ///     <para>Initializes an instance of the <see cref="MessagePart"/> class.</para>
 /// </summary>
 public MessagePart()
 {
     messagePartCollection = new Collection <MessagePart>();
     propertyCollection    = new PropertyCollection();
 }