Takes an ISyncEvent and combines it together with the source object. This could be used to take one event of an event queue and put it into another queue without loosing context informations which are implicit given on the source queue.
Наследование: ISyncEvent
Пример #1
0
 public void ContructorTest()
 {
     var inner = new Mock<ISyncEvent>().Object;
     var outer = new EncapsuledEvent(inner);
     Assert.That(inner, Is.EqualTo(outer.Event));
 }