Exemplo n.º 1
0
 /// <summary>
 /// Gets the m d5 asynchronous.
 /// </summary>
 /// <param name="client">The client.</param>
 /// <param name="path">The path.</param>
 /// <param name="factory">The factory.</param>
 /// <param name="creationOptions">The creation options.</param>
 /// <param name="scheduler">The scheduler.</param>
 /// <returns></returns>
 public static Task <string> GetMD5Async(this FtpClient client, string path,
                                         TaskFactory <string> factory        = null,
                                         TaskCreationOptions creationOptions = default(TaskCreationOptions),
                                         TaskScheduler scheduler             = null)
 {
     return((factory = factory ?? Task <string> .Factory).FromAsync(
                client.BeginGetMD5(path, null, null),
                MD5.EndGetMD5,
                creationOptions, scheduler ?? factory.Scheduler ?? TaskScheduler.Current));
 }