Nexus.Client.ModManagement.ModInstaller.ScriptExecutor_TaskStarted C# (CSharp) Method

ScriptExecutor_TaskStarted() private method

Handles the IBackgroundTaskSet.TaskStarted event of script executors.
This bubbles the started task to any listeners.
private ScriptExecutor_TaskStarted ( object sender, EventArgs e ) : void
sender object The object that raised the event.
e EventArgs An describing the event arguments.
return void
		private void ScriptExecutor_TaskStarted(object sender, EventArgs<IBackgroundTask> e)
		{
			OnTaskStarted(e.Argument);
		}