Amazon.Runtime.Internal.Util.IniFile.SectionExists C# (CSharp) Метод

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

Determine if a section exists in the INI file.
public SectionExists ( string sectionName ) : bool
sectionName string name of section to look for
Результат bool
        public bool SectionExists(string sectionName)
        {
            var lineNumber = 0;
            return TrySeekSection(sectionName, ref lineNumber);
        }