/// <summary>
 /// Creates new instance.
 /// </summary>
 public PublishPreroutingContext(string[] types, PreroutingContext parent) : base(parent)
 {
     Types = types;
     Body  = parent.Body;
 }
 /// <summary>
 /// Creates new instance.
 /// </summary>
 public ReplyPreroutingContext(PreroutingContext parent) : base(parent)
 {
     Body = parent.Body;
 }