Exemple #1
0
 /// <summary>
 /// Called when the (deduplication) in-memory cache of destination system entities
 /// is about to be populated.
 /// </summary>
 /// <param name="args">The event data.</param>
 public virtual void OnCachePopulating(ICachePopulatingArgs args)
 {
 }
Exemple #2
0
 /// <summary>
 /// Called when the (deduplication) in-memory cache of destination system entities
 /// is about to be populated.
 /// </summary>
 /// <param name="args">The event data.</param>
 public override void OnCachePopulating(ICachePopulatingArgs args)
 {
     Console.Write(Resources.CachingDestinationSystemEntities);
 }
Exemple #3
0
 /// <summary>
 /// Called when the (deduplication) in-memory cache of destination system entities
 /// is about to be populated.
 /// </summary>
 /// <param name="args">The event data.</param>
 void IEventReceiver <ICachePopulatingArgs> .Occurred(ICachePopulatingArgs args)
 {
     this.OnCachePopulating(args);
 }
Exemple #4
0
 /// <summary>
 /// To be called when the (deduplication) in-memory cache of destination system
 /// entities is about to be populated.
 /// </summary>
 /// <param name="args">The event data.</param>
 public void CachePopulating(ICachePopulatingArgs args)
 {
     this.Dispatch(args);
 }