C# Class Mixpanel.NET.Events.MixpanelEvent

Structure which represents a standard Mixpanel event. Mixpanel events are each given a name which is sent as "event" and a property bag sent as "properties". The entire event is serialized to JSON and so the property bag must contain only types supported by JSON serialization and should be flat (no nested properties). This class is also useful for testing or building proxies where deserialization of the events may be needed.
显示文件 Open project: chrisnicola/Mixpanel.NET Class Usage Examples

Public Methods

Method Description
MixpanelEvent ( ) : System.Collections.Generic
MixpanelEvent ( string name, object>.IDictionary properties = null ) : System.Collections.Generic

Method Details

MixpanelEvent() public method

public MixpanelEvent ( ) : System.Collections.Generic
return System.Collections.Generic

MixpanelEvent() public method

public MixpanelEvent ( string name, object>.IDictionary properties = null ) : System.Collections.Generic
name string
properties object>.IDictionary
return System.Collections.Generic