BF2Statistics.ProgramUpdater.TaskForm_Cancelled C# (CSharp) Метод

TaskForm_Cancelled() статический приватный Метод

Event called when the Cancel button is pushed on the main form
static private TaskForm_Cancelled ( object sender, CancelEventArgs e ) : void
sender object
e CancelEventArgs
Результат void
        static void TaskForm_Cancelled(object sender, CancelEventArgs e)
        {
            if (IsDownloading)
            {
                Web.CancelAsync();
            }
        }