Table of Contents

Class ControlExtensions

Namespace
RadioExt_Helper.utility
Assembly
RadioExt-Helper.dll
Contains extension methods for the Control class.
public static class ControlExtensions
Inheritance
ControlExtensions
Inherited Members

Methods

SafeBeginInvoke(Control, Action)

Safely begins invoking the specified action on the control's thread.
public static void SafeBeginInvoke(this Control control, Action action)

Parameters

control Control
The control on which to begin invoking the action.
action Action
The action to begin invoking.

SafeEndInvoke(Control, IAsyncResult)

Safely ends invoking the specified asynchronous result on the control's thread.
public static void SafeEndInvoke(this Control control, IAsyncResult result)

Parameters

control Control
The control on which to end invoking the asynchronous result.
result IAsyncResult
The asynchronous result to end invoking.

SafeInvoke(Control, Action)

Safely invokes the specified action on the control's thread.
public static void SafeInvoke(this Control control, Action action)

Parameters

control Control
The control on which to invoke the action.
action Action
The action to invoke.