Nexus.Client.ModManagement.CategoryManager.Update C# (CSharp) Method

Update() public method

Runs the managed updaters.
public Update ( ModManager p_ModManager, IList p_lstMods, Int32 p_intNewValue, ConfirmActionMethod p_camConfirm ) : IBackgroundTask
p_ModManager ModManager The Mod Manager.
p_lstMods IList The list of mods to update.
p_intNewValue System.Int32 The new category id value.
p_camConfirm ConfirmActionMethod The delegate to call to confirm an action.
return IBackgroundTask
		public IBackgroundTask Update(ModManager p_ModManager, IList<IMod> p_lstMods, Int32 p_intNewValue, ConfirmActionMethod p_camConfirm)
		{
			CategorySwitchTask cstCategorySwitch = new CategorySwitchTask(p_ModManager, p_lstMods, p_intNewValue);
			cstCategorySwitch.Update(p_camConfirm);
			return cstCategorySwitch;
		}