static void BuildAndSendEvent(string component, string action, string name) { var newEvent = new GenericEditorEditFieldEvent(component, action, name); PurchasingServiceAnalyticsSender.SendEvent(newEvent); }
static void BuildAndSendEvent(string component, string tool, string name, string value) { var newEvent = new GenericEditorSelectDropdownEvent(component, tool, name, value); PurchasingServiceAnalyticsSender.SendEvent(newEvent); }
static void BuildAndSendEvent(string component, string source, string action) { var newEvent = new GenericEditorClickMenuItemEvent(component, source, action); PurchasingServiceAnalyticsSender.SendEvent(newEvent); }
static void BuildAndSendEvent(string component, string tool, string name, bool value) { var newEvent = new GenericEditorClickCheckboxEvent(component, tool, name, value); PurchasingServiceAnalyticsSender.SendEvent(newEvent); }
internal static void SendProjectSettingsValidatePublicKey() { var newEvent = CreateProjectSettingsValidatePublicKeyEvent(); PurchasingServiceAnalyticsSender.SendEvent(newEvent); }