System.ConfigTreeParser.BeginChildren C# (CSharp) Method

BeginChildren() public method

public BeginChildren ( int size, ConfigNodeSubType subType, ConfigNodeType nType, int terminal, [ text, int textLength, int prefixLength ) : void
size int
subType ConfigNodeSubType
nType ConfigNodeType
terminal int
text [
textLength int
prefixLength int
return void
        public void BeginChildren(int size,
                                  ConfigNodeSubType subType, 
                                  ConfigNodeType nType,                                   
                                  int terminal, 
                                  [MarshalAs(UnmanagedType.LPWStr)] String text, 
                                  int textLength, 
                                  int prefixLength)
        {
            //Trace("BeginChildren",size,subType,nType,terminal,text,textLength,prefixLength,0);
            if (!parsing &&
                (!bNoSearchPath 
                 && depth == (searchDepth + 1)
                 && String.Compare(text, treeRootPath[searchDepth], StringComparison.Ordinal) == 0))
            {
                searchDepth++;
            }
        }