AnalyticsSend Method (String, String, String, UInt32) |
Sends a Google Analytics event using the Measurement Protocol. See https://developers.google.com/analytics/devguides/collection/protocol/v1/devguide#event for details.
This method is asyncrhonous and the return code is completely ignored. Validate the data you send
Namespace:
Rhino.Runtime
Assembly:
RhinoCommon (in RhinoCommon.dll)
Since: 6.0
Syntax public void Send(
string Category,
string Action,
string Label,
uint Value
)
Public Sub Send (
Category As String,
Action As String,
Label As String,
Value As UInteger
)
Parameters
- Category
- Type: SystemString
Event category. We use the feature or subsystem, such as "installer" or "app" or "document" or "loft". Maps to the Google Analytics parameter "ec". - Action
- Type: SystemString
Event action. A verb: "open" or "start" or "option" Maps to the Google Analytics parameter "ea". - Label
- Type: SystemString
Event label. Maps to the Google Analytics parameter "el". - Value
- Type: SystemUInt32
Event value. Maps to the Google Analytics parameter "ev".
See Also