예제 #1
0
 /// <summary>
 /// Creates an instance of an extendable option.
 /// </summary>
 protected ExtendableOptions()
 {
     Context         = new ContextBag();
     OutgoingHeaders = new Dictionary <string, string>();
     MessageId       = CombGuid.Generate().ToString();
 }
 /// <summary>
 /// Creates an instance of an extendable option.
 /// </summary>
 protected ExtendableOptions()
 {
     Context         = new ContextBag();
     OutgoingHeaders = new Dictionary <string, string>();
 }
예제 #3
0
 /// <summary>
 /// Initialized a new instance of <see cref="ContextBag" />.
 /// </summary>
 public ContextBag(ContextBag parentBag = null)
 {
     this.parentBag = parentBag;
 }