Exemplo n.º 1
0
 /// <summary>
 /// Fired when finished
 /// </summary>
 /// <param name="hashEventArgs"></param>
 public static void OnHashCompleted(HashEventArgs hashEventArgs)
 {
     if (HashFinished != null)
     {
         HashFinished(null, hashEventArgs);
     }
 }
Exemplo n.º 2
0
 /// <summary>
 /// Fired if progressed
 /// </summary>
 /// <param name="hashEventArgs"></param>
 public static void OnHashProgressed(HashEventArgs hashEventArgs)
 {
     if (HashProgressed != null)
     {
         HashProgressed(null, hashEventArgs);
     }
 }