Cuke4Nuke.Core.Processor.GetScenarioTags C# (CSharp) Method

GetScenarioTags() private method

private GetScenarioTags ( Newtonsoft.Json.Linq.JArray requestObject ) : string[]
requestObject Newtonsoft.Json.Linq.JArray
return string[]
        private string[] GetScenarioTags(JArray requestObject)
        {
            string[] scenarioTags = new string[0];
            if (requestObject.Count > 1)
            {
                scenarioTags = ToStringArray((JArray)((JObject)requestObject[1])["tags"]);
            }
            return scenarioTags;
        }