Ejemplo n.º 1
0
 /// <summary>
 /// Initializes a new instance of the <cref name="NotifyStateManagerSingleEntityChangedEventArgs"/>
 /// </summary>
 /// <param name="transaction">Transaction that the change is related to.</param>
 /// <param name="reliableState"><cref name="IReliableState"/> that was changed.</param>
 /// <param name="action">The type of the change.</param>
 public NotifyStateManagerSingleEntityChangedEventArgs(
     ITransaction transaction,
     IReliableState reliableState,
     NotifyStateManagerChangedAction action) : base(action)
 {
     this.transaction   = transaction;
     this.reliableState = reliableState;
 }
 /// <summary>
 /// Initializes a new instance of the <cref name="NotifyStateManagerChangedEventArgs"/>
 /// </summary>
 /// <param name="action">Type of the event.</param>
 public NotifyStateManagerChangedEventArgs(NotifyStateManagerChangedAction action)
 {
     this.action = action;
 }