Class History
Namespace: SuperOffice.WebApi.Data
Assembly: SuperOffice.WebApi.dll
Carrier object for History.
The usage history of the currently logged in user is represented as History objects.
Inheritance
object ←
Carrier ←
History
Inherited Members
Carrier.TableRight,
Carrier.FieldProperties,
object.ToString(),
object.Equals(object),
object.Equals(object, object),
object.ReferenceEquals(object, object),
object.GetHashCode(),
object.GetType(),
object.MemberwiseClone()
Examples
Get History 123 using the WebApi client:
var configuration = new WebApiConfiguration(url);
var agent = new ViewStateAgent(configuration);
var history = agent.GetHistory( 123 );
Constructors
History()
Default constructor - defaults any enum props to 0.
Properties
AssociateId
Owner of history list
Property Value
int
HistoryId
Primary key
Property Value
int
HistoryName
The name of the history list, for instance contact. Represents the history table’s TableId field
Property Value
string
Id
Id of the history item, for instance a contact id. Represents the history table’s RecordId field, if the item is based on a history table record
Property Value
int
ItemInfo
Extra information on the history item, e.g. The Associate Type for an associate or other relevant info.
Property Value
string
Name
Name of the history item, for instance contact name
Property Value
string
Rank
Sort order, indexed so it can used for sorting in the query
Property Value
short
See Also
ViewStateAgent