BExIS.Dcm.Wizard.StepInfo.StepInfo C# (CSharp) Метод

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

public StepInfo ( string title ) : System
title string
Результат System
        public StepInfo(string title)
        {
            this.title = title;
            this.parentTitle = "";
            this.stepStatus = StepStatus.none;
            this.GetActionInfo = new ActionInfo();
            this.PostActionInfo = new ActionInfo();
            this.Children = new List<StepInfo>();
            this.HasContent = true;
            this.IsInstanze = true;
            this.Expand = false;
        }