Rediger

Del via


SqlRowsCopiedEventHandler Delegate

Definition

Caution

Use the Microsoft.Data.SqlClient package instead.

Represents the method that handles the SqlRowsCopied event of a SqlBulkCopy.

public delegate void SqlRowsCopiedEventHandler(System::Object ^ sender, SqlRowsCopiedEventArgs ^ e);
public delegate void SqlRowsCopiedEventHandler(object sender, SqlRowsCopiedEventArgs e);
[System.Obsolete("Use the Microsoft.Data.SqlClient package instead.")]
public delegate void SqlRowsCopiedEventHandler(object sender, SqlRowsCopiedEventArgs e);
type SqlRowsCopiedEventHandler = delegate of obj * SqlRowsCopiedEventArgs -> unit
[<System.Obsolete("Use the Microsoft.Data.SqlClient package instead.")>]
type SqlRowsCopiedEventHandler = delegate of obj * SqlRowsCopiedEventArgs -> unit
Public Delegate Sub SqlRowsCopiedEventHandler(sender As Object, e As SqlRowsCopiedEventArgs)

Parameters

sender
Object

The source of the event.

e
SqlRowsCopiedEventArgs

A SqlRowsCopiedEventArgs object that contains the event data.

Attributes

Extension Methods

GetMethodInfo(Delegate)

Gets an object that represents the method represented by the specified delegate.

Applies to

See also