Gta5EyeTracking.GoogleAnalyticsApi.Track C# (CSharp) Method

Track() private method

private Track ( HitType type, string category, string action, string label, int value = null ) : void
type HitType
category string
action string
label string
value int
return void
        private void Track(HitType type, string category, string action, string label,
			int? value = null)
        {
            Task.Run(() =>
            {
                try
                {
                    if (string.IsNullOrEmpty(category)) return;
                    if (string.IsNullOrEmpty(action)) return;

                    var request = (HttpWebRequest) WebRequest.Create("http://www.google-analytics.com/collect");
                    request.Method = "POST";
                    request.KeepAlive = false;
                    request.Timeout = 1000;

                    // the request body we want to send
                    var postData = new Dictionary<string, string>
                    {
                        {"v", "1"},
                        {"tid", _trackingId},
                        {"cid", _userGuid},
                        {"uid", _userGuid},
                        {"t", type.ToString()},
                        {"ec", category},
                        {"ea", action},
                        {"an", _applicationName},
                        {"aid", _applicationId},
                        {"av", _applicationVersion},
                    };
                    if (!string.IsNullOrEmpty(label))
                    {
                        postData.Add("el", label);
                    }
                    if (value.HasValue)
                    {
                        postData.Add("ev", value.ToString());
                    }

                    var postDataString = postData
                        .Aggregate("", (data, next) => string.Format("{0}&{1}={2}", data, next.Key,
                            HttpUtility.UrlEncode(next.Value)))
                        .TrimEnd('&');

                    // set the Content-Length header to the correct value
                    request.ContentLength = Encoding.UTF8.GetByteCount(postDataString);

                    // write the request body to the request
                    using (var writer = new StreamWriter(request.GetRequestStream()))
                    {
                        writer.Write(postDataString);
                    }

                    using (var webResponse = (HttpWebResponse) request.GetResponse())
                    {
                        if (webResponse.StatusCode != HttpStatusCode.OK)
                        {
                            Debug.Log("Google Analytics tracking did not return OK 200");
                        }
                        webResponse.Close();
                    }

                }
                catch (Exception e)
                {
                    Debug.Log(e.Message);
                }
            });
        }