AppMetrics.Client.Tracker.Tracker C# (CSharp) Method

Tracker() private method

private Tracker ( string url, string applicationKey, string accessKey ) : System
url string
applicationKey string
accessKey string
return System
        private Tracker(string url, string applicationKey, string accessKey)
        {
            if (string.IsNullOrEmpty(url))
                throw new ArgumentNullException();
            Url = url;

            if (string.IsNullOrEmpty(applicationKey))
                throw new ArgumentNullException();
            ApplicationKey = applicationKey;

            AccessKey = accessKey;

            SessionId = Guid.NewGuid().ToString();

            lock (Sync)
            {
                Sessions.Add(this);
            }
            ReportPeriodicInfo();
        }

Same methods

Tracker::Tracker ( ) : System