Class Activity.ActivityEventContainer<T>
Container class for an activity event data. Each class which inherits from Activity can use it to facilitate transportation and demand of additional parameters.
Inheritance
System.Object
Activity.ActivityEventContainer<T>
Inherited Members
System.Object.Equals(System.Object)
System.Object.Equals(System.Object, System.Object)
System.Object.GetHashCode()
System.Object.GetType()
System.Object.MemberwiseClone()
System.Object.ReferenceEquals(System.Object, System.Object)
System.Object.ToString()
Namespace: Appearition.Analytics
Assembly: Appearition.SDK.dll
Syntax
public abstract class ActivityEventContainer<T>
where T : Activity.ActivityEventContainer<T>
Type Parameters
Name | Description |
---|---|
T |
Constructors
View SourceActivityEventContainer()
Declaration
protected ActivityEventContainer()
Fields
View SourceanalyticEvents
Contains any analytics events to add as part of this container.
Declaration
protected List<AnalyticsData> analyticEvents
Field Value
Type | Description |
---|---|
System.Collections.Generic.List<AnalyticsData> |
Properties
View SourceEventCode
The code of this specific event
Declaration
public virtual string EventCode { get; }
Property Value
Type | Description |
---|---|
System.String |
Methods
View SourceConvertContainerTypeToEventCode<K>()
Converts the syntax of an activity event container to an event code.
Declaration
public static string ConvertContainerTypeToEventCode<K>()
Returns
Type | Description |
---|---|
System.String |
Type Parameters
Name | Description |
---|---|
K |
GenerateActivityEvent()
Converts this container into a proper ActivityEvent.
Declaration
public virtual ActivityEvent GenerateActivityEvent()
Returns
Type | Description |
---|---|
ActivityEvent |