BF2Statistics.TaskStep.TaskStep C# (CSharp) Method

TaskStep() public method

Creates a new instance of TaskStep
public TaskStep ( int Step, string Description = "", bool Faulted = false, Exception Error = null ) : System
Step int
Description string
Faulted bool
Error System.Exception
return System
        public TaskStep(int Step, string Description = "", bool Faulted = false, Exception Error = null)
        {
            this.StepId = Step;
            this.Description = Description;
            this.IsFaulted = Faulted;
            this.Error = Error;
        }
TaskStep