/// <inheritdoc />
 public IEnumerable <KeyValuePair <string, string> > GetBaggageItems()
 {
     return(_baggage.GetAll());
 }
Ejemplo n.º 2
0
 /// <summary>
 ///     Combines two baggage into one.
 /// </summary>
 /// <param name="other"></param>
 public void Merge(Baggage other)
 {
     Merge(other?.GetAll());
 }