ST.CommandLine.RunInput.GetBatchRunRequest C# (CSharp) Method

GetBatchRunRequest() public method

public GetBatchRunRequest ( ) : BatchRunRequest
return StoryTeller.Engine.BatchRunRequest
        public BatchRunRequest GetBatchRunRequest()
        {
            var tags = ExcludeTagsFlag ?? "";
            return _batchRunRequest ?? (_batchRunRequest = new BatchRunRequest
            {
                Lifecycle = LifecycleFlag,
                SpecPath = SpecPath,
                Suite = WorkspaceFlag,
                Tags = tags.Split(new[] { "," }, StringSplitOptions.RemoveEmptyEntries).Select(x => x.Trim()).ToArray()
            });
        }