Class GenericAnalyticsEvent
Class GenericAnalyticsEvent.
Inherited Members
Namespace: UnityEngine.Industrial.Configuring.Providers
Syntax
public class GenericAnalyticsEvent : AnalyticsEngineEvent
Constructors
GenericAnalyticsEvent(String, String, Object)
Initializes a new instance of the GenericAnalyticsEvent class.
Declaration
public GenericAnalyticsEvent(string eventName, string key, object data)
Parameters
Type | Name | Description |
---|---|---|
String | eventName | Name of the event. |
String | key | The key. |
Object | data | The data. |
Properties
Data
Gets the data.
Declaration
public object Data { get; }
Property Value
Type | Description |
---|---|
Object | The data. |
Key
Gets the key.
Declaration
public string Key { get; }
Property Value
Type | Description |
---|---|
String | The key. |
Methods
GetEventData()
Gets the event data.
Declaration
public override IDictionary<string, object> GetEventData()
Returns
Type | Description |
---|---|
IDictionary<String, Object> | IDictionary<System.String, System.Object>. |