public GAEvent(GALevel level, string category, string action, string label) { Level = level; Category = category; Action = action; Label = label; }
public GAUserTimer(GALevel level, string category, string variable, string label) { Level = level; Category = category; Variable = variable; Label = label; }
public GAEvent(GALevel level, string category, string action, string label, int opt_value) { Level = level; Category = category; Action = action; Label = label; Value = opt_value; }
public void Add(GALevel gaLevel) { Hashtable eventSpecificParams = (Hashtable)LevelSpecificRequestParams().Clone(); eventSpecificParams["utmcc"] = CookieData(); eventSpecificParams["utmn"] = Random.Range(1000000000, 2000000000).ToString(); eventSpecificParams["utmp"] = gaLevel.ToUrlParamString(); eventList.Add(eventSpecificParams); }
public void Add(GALevel gaLevel) { Hashtable eventSpecificParams = (Hashtable)LevelSpecificRequestParams().Clone(); eventSpecificParams["utmcc"] = CookieData(); eventSpecificParams["utmn"] = Random.Range(1000000000,2000000000).ToString(); eventSpecificParams["utmp"] = gaLevel.ToUrlParamString(); requestQueue.Enqueue(eventSpecificParams); }