Class UiEvent
An event that the user interface should know about. The origin may be something that happens in the user interface (in any session), or in the database (for instance, background process)
Carrier object for UiEvent. Services for the UiEvent Carrier is available from the ViewState Agent.Namespace: SuperOffice.CRM.Services
Assembly: SuperOffice.Services.dll
Syntax
[DataContract(Namespace = "http://www.superoffice.net/ws/crm/NetServer/11.10.0.0")]
public class UiEvent : Carrier
Constructors
UiEvent()
Default constructor
Declaration
public UiEvent()
See Also
Properties
AssociateId
The ID of the associate causing the event
Declaration
[DataMember]
public virtual int AssociateId { get; set; }
Property Value
| Type | Description |
|---|---|
| int |
See Also
AssociateName
The full person name of the associate causing the event
Declaration
[DataMember]
public virtual string AssociateName { get; set; }
Property Value
| Type | Description |
|---|---|
| string |
See Also
EntityKey
Primary key of entity the event concerns
Declaration
[DataMember]
public virtual int EntityKey { get; set; }
Property Value
| Type | Description |
|---|---|
| int |
See Also
EntityType
Name of entity, for instance 'ticket'
Declaration
[DataMember]
public virtual string EntityType { get; set; }
Property Value
| Type | Description |
|---|---|
| string |
See Also
EventDateTime
When did the event happen
Declaration
[DataMember]
public virtual DateTime EventDateTime { get; set; }
Property Value
| Type | Description |
|---|---|
| DateTime |
See Also
EventId
Id of event, increasing in chronological order, assigned by server
Declaration
[DataMember]
public virtual int EventId { get; set; }
Property Value
| Type | Description |
|---|---|
| int |
See Also
EventName
Name of event, for instance 'change' or 'edit'
Declaration
[DataMember]
public virtual string EventName { get; set; }
Property Value
| Type | Description |
|---|---|
| string |
See Also
Methods
ToString()
Returns the carrier contents as a formatted string.
Declaration
public override string ToString()
Returns
| Type | Description |
|---|---|
| string | The carrier contents. |
See Also
ToString(string)
Returns the carrier contents as a formatted string, useful for debugging. Each line in the output is prefixed with the input value.
Declaration
public string ToString(string prefix)
Parameters
| Type | Name | Description |
|---|---|---|
| string | prefix | The line prefix (typically used for indenting) |
Returns
| Type | Description |
|---|---|
| string | The carrier contents. |