Interface IAnalyticsStandardEventComponent
Contract for sending a standard event to the analytics pipeline.
Namespace: Unity.Services.Core.Analytics.Internal
Syntax
public interface IAnalyticsStandardEventComponent : IServiceComponent
Methods
Record(String, IDictionary<String, Object>, Int32, String)
Records a standard event.
Declaration
void Record(string eventName, IDictionary<string, object> eventParameters, int eventVersion, string packageName)
Parameters
| Type | Name | Description |
|---|---|---|
| String | eventName | The name of the standard event. |
| IDictionary<String, Object> | eventParameters | The parameters of the standard event. Only the parameters specific to this event should be sent. |
| Int32 | eventVersion | The version of the standard event. |
| String | packageName | The name of the package recording the standard event. |