document.write('
Data hosted with ♥ by Pastebin.com - Download Raw - See Original
  1. [Serializable]
  2.  public class MergeEvent : AbstractEvent
  3.  {
  4.   private object original;
  5.   private string entityName;
  6.   private object requestedId;
  7.  
  8.   private object entity; // ported from H3.2 even if I don\'t understand why is unused in constructor
  9.   private object result;
  10.  
  11.   public MergeEvent(object entity, IEventSource source)
  12.    : base(source)
  13.   {
  14.    if (entity == null)
  15.     throw new ArgumentNullException("entity", "attempt to create merge event with null entity");
  16.  
  17.    Original = entity;
  18.   }
  19. //...
  20. }
');