Interface IAnalyticsStandardEventComponent
Contract for sending a standard event to the analytics pipeline.
Namespace: Unity.Services.Core.Analytics.Internal
Assembly: Unity.Services.Core.Internal.dll
Syntax
[RequireImplementors]
public interface IAnalyticsStandardEventComponent : IServiceComponent
Methods
Record(string, IDictionary<string, object>, int, 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. |
int | eventVersion | The version of the standard event. |
string | packageName | The name of the package recording the standard event. |