ListViewInsertedEventArgs(Int32, Exception) Constructor
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Initializes a new instance of the ListViewInsertedEventArgs class.
public:
ListViewInsertedEventArgs(int affectedRows, Exception ^ exception);
public ListViewInsertedEventArgs (int affectedRows, Exception exception);
new System.Web.UI.WebControls.ListViewInsertedEventArgs : int * Exception -> System.Web.UI.WebControls.ListViewInsertedEventArgs
Public Sub New (affectedRows As Integer, exception As Exception)
Parameters
- affectedRows
- Int32
The number of rows affected by the insert operation.
- exception
- Exception
The exception that is raised when the insert operation was performed, if any. If no exception was raised, use null
for this parameter.
Remarks
Use this constructor to initialize a new instance of the ListViewInsertedEventArgs class.
Note
This constructor is primarily used by control developers when raising events.
The following table shows the initial property values for an instance of the ListViewInsertedEventArgs class.
Property | Initial value |
---|---|
AffectedRows | The value of the affectedRows parameter. |
Exception | The System.Exception object that is contained in the e parameter. |
ExceptionHandled | Initialized to false . |
KeepInInsertMode | Initialized to false . |