Example #1
0
 /// <summary>
 /// Event argument for personal event notification events.
 /// </summary>
 /// <param name="e">Message event arguments</param>
 public PersonalEventNotificationEventArgs(PersonalEventNotificationEventArgs e)
     : base(e)
 {
     this.personalEvent = e.personalEvent;
     this.pepClient     = e.pepClient;
 }
Example #2
0
 /// <summary>
 /// Event argument for personal event notification events.
 /// </summary>
 /// <param name="PersonalEvent">Personal event</param>
 /// <param name="PepClient">Personal Eventing Protocol (PEP) Client.</param>
 /// <param name="e">Message event arguments</param>
 public PersonalEventNotificationEventArgs(IPersonalEvent PersonalEvent, PepClient PepClient, ItemNotificationEventArgs e)
     : base(e)
 {
     this.personalEvent = PersonalEvent;
     this.pepClient     = PepClient;
 }