Table of Contents

Delegate NpgsqlRowUpdatingEventHandler

Namespace
Npgsql
Assembly
Npgsql.dll

Represents the method that handles the RowUpdating events.

public delegate void NpgsqlRowUpdatingEventHandler(object sender, NpgsqlRowUpdatingEventArgs e)

Parameters

sender object

The source of the event.

e NpgsqlRowUpdatingEventArgs

A NpgsqlRowUpdatingEventArgs that contains the event data.

Constructors

NpgsqlRowUpdatingEventHandler(object, nint)

public NpgsqlRowUpdatingEventHandler(object @object, nint method)

Parameters

object object
method nint

Methods

BeginInvoke(object, NpgsqlRowUpdatingEventArgs, AsyncCallback, object)

public virtual IAsyncResult BeginInvoke(object sender, NpgsqlRowUpdatingEventArgs e, AsyncCallback callback, object @object)

Parameters

sender object
e NpgsqlRowUpdatingEventArgs
callback AsyncCallback
object object

Returns

IAsyncResult

EndInvoke(IAsyncResult)

public virtual void EndInvoke(IAsyncResult result)

Parameters

result IAsyncResult

Invoke(object, NpgsqlRowUpdatingEventArgs)

public virtual void Invoke(object sender, NpgsqlRowUpdatingEventArgs e)

Parameters

sender object
e NpgsqlRowUpdatingEventArgs