Class TrackingEntry
Represents a change of one property
Inheritance
System.Object
TrackingEntry
Inherited Members
System.Object.ToString()
System.Object.Equals(System.Object)
System.Object.Equals(System.Object, System.Object)
System.Object.ReferenceEquals(System.Object, System.Object)
System.Object.GetHashCode()
System.Object.GetType()
System.Object.MemberwiseClone()
Namespace: Simplic.Tracking
Assembly: Simplic.Tracking.dll
Syntax
public class TrackingEntry
Constructors
| Improve this Doc View SourceTrackingEntry(String, Object, Object, Int64)
Initializes a new TrackingEntry by a given FieldName, 2 Values and a trackingId
Declaration
public TrackingEntry(string newFieldName, object oldValue, object newValue, long newTrackingId)
Parameters
Type | Name | Description |
---|---|---|
System.String | newFieldName | |
System.Object | oldValue | |
System.Object | newValue | |
System.Int64 | newTrackingId |
Properties
| Improve this Doc View SourceFieldName
Gets or sets the FieldName
Declaration
public string FieldName { get; set; }
Property Value
Type | Description |
---|---|
System.String |
Id
Gets or sets the Id
Declaration
public long Id { get; set; }
Property Value
Type | Description |
---|---|
System.Int64 |
NewValue
Gets or sets the NewValue
Declaration
public object NewValue { get; set; }
Property Value
Type | Description |
---|---|
System.Object |
OldValue
Gets or sets the OldValue
Declaration
public object OldValue { get; set; }
Property Value
Type | Description |
---|---|
System.Object |
TrackingId
Gets or sets the TrackinId
Declaration
public long TrackingId { get; set; }
Property Value
Type | Description |
---|---|
System.Int64 |
Type
Gets or sets the Type
Declaration
public string Type { get; set; }
Property Value
Type | Description |
---|---|
System.String |