CSharpAnalytics.Activities.TimedEventActivity.TimedEventActivity C# (CSharp) Метод

TimedEventActivity() публичный Метод

Create a new EventActivity with various parameters to be captured.
public TimedEventActivity ( string category, string variable, System.TimeSpan time, string label = null ) : System
category string Category name to be assigned to Category property.
variable string Variable name to be assigned to Variable property.
time System.TimeSpan Optional time to be assigned to the Time property, will default to time between being started and ended.
label string Optional label to be assigned to the Label property.
Результат System
        public TimedEventActivity(string category, string variable, TimeSpan time, string label = null)
        {
            this.category = category;
            this.variable = variable;
            this.label = label;
            this.time = time;
        }
TimedEventActivity