Class Table
A table.
[DataContract(IsReference = true)]
public class Table : INotifyPropertyChanged
- Inheritance
-
Table
- Implements
- Inherited Members
Properties
Data
Gets or sets the table data.
[DataMember]
public string Data { get; set; }
Property Value
IsDeserializing
Gets or sets whether this object is currently being deserialized.
protected bool IsDeserializing { get; }
Property Value
Name
Gets or sets the table name.
[DataMember]
public string Name { get; set; }
Property Value
TableId
Gets or sets the unique identifier for this table.
[DataMember]
public int TableId { get; set; }
Property Value
UpdateDateTime
Gets or sets the date and time this table was last updated.
[DataMember]
public DateTime UpdateDateTime { get; set; }
Property Value
UserName
Gets or sets the name of the user who last updated this table.
[DataMember]
public string UserName { get; set; }
Property Value
Methods
OnPropertyChanged(string)
Processes property changes by raising the PropertyChanged event.
protected virtual void OnPropertyChanged(string propertyName)
Parameters
propertyName
stringThe name of the property that changed.
Events
PropertyChanged
Occurs when a property value changes.
public event PropertyChangedEventHandler PropertyChanged