Class RecordChangedEventArgs

Definition

Namespace:
Tizen.Data.Tdbc
Assembly:
Tizen.Data.Tdbc.dll

RecordChangedEventArgs class. This class is an event arguments of the RecordChanged events.

C#
Copy
public class RecordChangedEventArgs : EventArgs
Inheritance
object
System.EventArgs
RecordChangedEventArgs

Properties

View Source

Database

Gets the database name of the record chagned event.

Declaration
C#
Copy
public string Database { get; }
Property Value
Type Description
string
View Source

OperationType

Gets the operation type of the record changed event.

Declaration
C#
Copy
public OperationType OperationType { get; }
Property Value
Type Description
OperationType
View Source

Record

Gets the changed record.

Declaration
C#
Copy
public IRecord Record { get; }
Property Value
Type Description
IRecord
Remarks

If the operation type is Delete, the changed record may by empty.

View Source

Table

Gets the table name of the record changed event.

Declaration
C#
Copy
public string Table { get; }
Property Value
Type Description
string