Method | Description | |
---|---|---|
InvokeIfRequired ( this control, System.Action methodcall ) : void |
Invokes a method on a control if required. With Simple helper extension method to marshal to correct thread if its required. This also checks the control fornull and disposed. |
|
IvReq ( this control, System.Action methodcall ) : void |
Invokes a method on a control if required. With no Simple helper extension method to marshal to correct thread if its required. |
public static InvokeIfRequired ( this control, System.Action methodcall ) : void | ||
control | this | The source control. |
methodcall | System.Action | The method to call. |
return | void |
public static IvReq ( this control, System.Action methodcall ) : void | ||
control | this | The source control. |
methodcall | System.Action | The method to call. |
return | void |