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

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

Return the properties for the section if it exists.
public TryGetSection ( Regex sectionNameRegex, string>.Dictionary &properties ) : bool
sectionNameRegex System.Text.RegularExpressions.Regex Regex to match name of section to get
properties string>.Dictionary properties contained in the section
Результат bool
        public bool TryGetSection(Regex sectionNameRegex, out Dictionary<string, string> properties)
        {
            string dummy = null;
            return TryGetSection(sectionNameRegex, out dummy, out properties);
        }

Same methods

IniFile::TryGetSection ( Regex sectionNameRegex, string &sectionName, string>.Dictionary &properties ) : bool
IniFile::TryGetSection ( string sectionName, string>.Dictionary &properties ) : bool