Class PlayURPlugin.AppendableAction
An action that can have data for a given column appended-to over time. Can be updated frequently, and is updated to the server at a regular interval.
Implements
Inherited Members
Namespace: PlayUR
Assembly: PlayUR.dll
Syntax
public class PlayURPlugin.AppendableAction : PlayURPlugin.UpdatableAction<string>, PlayURPlugin.IProcessAction
Constructors
| Improve this Doc View SourceAppendableAction(Action, AnalyticsColumn)
Create an action that can be appended-to over time.
Declaration
public AppendableAction(Action action, AnalyticsColumn column)
Parameters
Type | Name | Description |
---|---|---|
Action | action | The analytics action id to tag this action with |
AnalyticsColumn | column | The column to use for storing the data |
AppendableAction(Action, AnalyticsColumn, string)
Create an action that can be appended-to over time, and set the initial data.
Declaration
public AppendableAction(Action action, AnalyticsColumn column, string initialData)
Parameters
Type | Name | Description |
---|---|---|
Action | action | The analytics action id to tag this action with |
AnalyticsColumn | column | The column to use for storing the data |
string | initialData | The initial data to store in the column |
Fields
| Improve this Doc View Sourcecolumn
Declaration
protected AnalyticsColumn column
Field Value
Type | Description |
---|---|
AnalyticsColumn |
currentDataValue
Declaration
protected string currentDataValue
Field Value
Type | Description |
---|---|
string |
Properties
| Improve this Doc View SourceValue
The current value stored in the column for this action.
Declaration
public string Value { get; }
Property Value
Type | Description |
---|---|
string |
Methods
| Improve this Doc View SourceAppend(string)
Append data to the column for this action. Is not immediately uploaded to server, PlayUR handles this on a regular interval instead.
Declaration
public PlayURPlugin.InProgressAction Append(string data)
Parameters
Type | Name | Description |
---|---|---|
string | data |
Returns
Type | Description |
---|---|
PlayURPlugin.InProgressAction |