Engage.Survey.Entities.Survey.GetSection C# (CSharp) Method

GetSection() public method

Gets the section.
public GetSection ( string sectionId ) : ISection
sectionId string The section ID.
return ISection
        public ISection GetSection(string sectionId)
        {
            return this.GetSections().FirstOrDefault(section => section.SectionId.ToString() == sectionId);
        }