Table of Contents

Method AddIdleTask

Namespace
Alternet.UI
Assembly
Alternet.UI.Common.dll

AddIdleTask(Action<object?>, object?)

Adds task which will be executed one time when the application finished processing events and is about to enter the idle state.

public static void AddIdleTask(Action<object?> task, object? param = null)

Parameters

task Action<object>

Task action.

param object

Task parameter.

AddIdleTask(Action?)

Adds task which will be executed one time when the application finished processing events and is about to enter the idle state.

public static void AddIdleTask(Action? task)

Parameters

task Action

Task action.