Ejemplo n.º 1
0
 public void GetHashAsync(string filename, Nerdcave.Common.Priority priority)
 {
     if (this.GetHashAsyncCompleted != null)
     {
         this.GetHashAsyncCompleted(this, new GetHashEventArgs()
         {
             Path = filename, Hash = GetHash(filename, priority)
         });
     }
 }
Ejemplo n.º 2
0
 public string GetHash(string filename, Nerdcave.Common.Priority priority)
 {
     return("SomeString".GetHashSHA1());
 }