/// <summary>
 ///   Raises the Changed event. </summary>
 /// <param name="e">
 ///   The arguments object associated with the Changed event. </param>
 /// <remarks>
 ///   This method should be invoked after a change to the profile has been made so that the
 ///   Changed event is raised, giving a chance to the handlers to be notified of the change. </remarks>
 /// <seealso cref="Changed" />
 /// <seealso cref="OnChanging" />
 protected virtual void OnChanged(ProfileChangedArgs e)
 {
     if (Changed != null)
     {
         Changed(this, e);
     }
 }
Beispiel #2
0
 /// <summary>
 ///   Raises the Changed event. </summary>
 /// <param name="e">
 ///   The arguments object associated with the Changed event. </param>
 /// <remarks>
 ///   This method should be invoked after a change to the profile has been made so that the
 ///   Changed event is raised, giving a chance to the handlers to be notified of the change. </remarks>
 /// <seealso cref="Changed" />
 /// <seealso cref="OnChanging" />
 protected virtual void OnChanged(ProfileChangedArgs e)
 {
     if (Changed != null)
         Changed(this, e);
 }