CSLA.NET 5.4.2
CSLA .NET is a software development framework that helps you build a reusable, maintainable object-oriented business layer for your app.
Csla.Web.DeleteObjectArgs Class Reference

Argument object used in the DeleteObject event. More...

Inheritance diagram for Csla.Web.DeleteObjectArgs:

Public Member Functions

 DeleteObjectArgs (System.Collections.IDictionary keys, System.Collections.IDictionary oldValues)
 Create an instance of the object. More...
 

Properties

int RowsAffected [getset]
 Gets or sets the number of rows affected while handling this event. More...
 
System.Collections.IDictionary Keys [get]
 The list of key values entered by the user. More...
 
System.Collections.IDictionary OldValues [get]
 The list of old data values maintained by data binding. More...
 

Detailed Description

Argument object used in the DeleteObject event.

Definition at line 15 of file DeleteObjectArgs.cs.

Constructor & Destructor Documentation

◆ DeleteObjectArgs()

Csla.Web.DeleteObjectArgs.DeleteObjectArgs ( System.Collections.IDictionary  keys,
System.Collections.IDictionary  oldValues 
)

Create an instance of the object.

Definition at line 64 of file DeleteObjectArgs.cs.

Property Documentation

◆ Keys

System.Collections.IDictionary Csla.Web.DeleteObjectArgs.Keys
get

The list of key values entered by the user.

It is up to the event handler in the web page to use the values to identify the object to be deleted.

Definition at line 44 of file DeleteObjectArgs.cs.

◆ OldValues

System.Collections.IDictionary Csla.Web.DeleteObjectArgs.OldValues
get

The list of old data values maintained by data binding.

It is up to the event handler in the web page to use the values to identify the object to be deleted.

Definition at line 56 of file DeleteObjectArgs.cs.

◆ RowsAffected

int Csla.Web.DeleteObjectArgs.RowsAffected
getset

Gets or sets the number of rows affected while handling this event.

Returns

The code handling the event should set this value to indicate the number of rows affected by the operation.

Definition at line 32 of file DeleteObjectArgs.cs.