Engage.Survey.Entities.Survey.GetSection C# (CSharp) Méthode

GetSection() public méthode

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