示例#1
0
 /// <summary>
 ///     Send out progress indicator
 /// </summary>
 internal void SendProgress(int percentage, string description)
 {
     ProgressAction?.BeginInvoke(percentage, description, null, null);
     //ProgressAction?.Invoke(percentage, description);
 }