Engage.Survey.Entities.Survey.GetSection C# (CSharp) Метод

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

Gets the section.
public GetSection ( string sectionId ) : ISection
sectionId string The section ID.
Результат ISection
        public ISection GetSection(string sectionId)
        {
            return this.GetSections().FirstOrDefault(section => section.SectionId.ToString() == sectionId);
        }