CSharpAnalytics.Activities.AutoTimedEventActivity.AutoTimedEventActivity C# (CSharp) Method

AutoTimedEventActivity() public method

Create a new AutoTimedEventActivity to capture details of a timed event.
public AutoTimedEventActivity ( string category, string variable, string label = null ) : System
category string Category of this event.
variable string Variable name of this event.
label string Label for this event.
return System
        public AutoTimedEventActivity(string category, string variable, string label = null)
            : base(category, variable, TimeSpan.Zero, label)
        {
            StartedAt = DateTimeOffset.Now;
        }
AutoTimedEventActivity