Show / Hide Table of Contents

Delegate CancelEventHandler

Represents the method that will handle the event raised when canceling an event.

Namespace: LemonUI
Assembly: LemonUI.FiveM.dll
Syntax
public delegate void CancelEventHandler(object sender, CancelEventArgs e)
Parameters
Type Name Description
object sender

The source of the event.

CancelEventArgs e

A CancelEventArgs that contains the event data.

Constructors

CancelEventHandler(object, nint)

Declaration
public CancelEventHandler(object @object, nint method)
Parameters
Type Name Description
object object
nint method

Methods

BeginInvoke(object, CancelEventArgs, AsyncCallback, object)

Declaration
public virtual IAsyncResult BeginInvoke(object sender, CancelEventArgs e, AsyncCallback callback, object @object)
Parameters
Type Name Description
object sender
CancelEventArgs e
AsyncCallback callback
object object
Returns
Type Description
IAsyncResult

EndInvoke(IAsyncResult)

Declaration
public virtual void EndInvoke(IAsyncResult result)
Parameters
Type Name Description
IAsyncResult result

Invoke(object, CancelEventArgs)

Declaration
public virtual void Invoke(object sender, CancelEventArgs e)
Parameters
Type Name Description
object sender
CancelEventArgs e
In this article
Back to top Generated by DocFX