Class RecordChangedEventArgs
Definition
- Assembly:
- Tizen.Data.Tdbc.dll
RecordChangedEventArgs class. This class is an event arguments of the RecordChanged events.
public class RecordChangedEventArgs : EventArgs
- Inheritance
-
objectSystem.EventArgsRecordChangedEventArgs
Properties
View SourceDatabase
Gets the database name of the record chagned event.
Declaration
public string Database { get; }
Property Value
Type | Description |
---|---|
string |
OperationType
Gets the operation type of the record changed event.
Declaration
public OperationType OperationType { get; }
Property Value
Type | Description |
---|---|
OperationType |
Record
Gets the changed record.
Declaration
public IRecord Record { get; }
Property Value
Type | Description |
---|---|
IRecord |
Remarks
If the operation type is Delete, the changed record may by empty.
Table
Gets the table name of the record changed event.
Declaration
public string Table { get; }
Property Value
Type | Description |
---|---|
string |