Esempio n. 1
0
 protected virtual void OnProgress(SizeEventArgs e)
 {
     Progress?.Invoke(this, e);
 }
Esempio n. 2
0
 protected virtual Task OnProgressAsync(SizeEventArgs e)
 {
     return(ProgressAsync.InvokeAsync(this, e));
 }
Esempio n. 3
0
 protected virtual void OnFinished(SizeEventArgs e)
 {
     Finished?.Invoke(this, e);
 }
Esempio n. 4
0
 protected virtual Task OnFinishedAsync(SizeEventArgs e)
 {
     return(FinishedAsync.InvokeAsync(this, e));
 }