4 writes to condSectionEntityIds
System.Xml (4)
System\Xml\Schema\DtdParser.cs (2)
1473condSectionEntityIds = new int[CondSectionEntityIdsInitialSize]; 1478condSectionEntityIds = tmp;
System\Xml\Schema\DtdParserAsync.cs (2)
1084condSectionEntityIds = new int[CondSectionEntityIdsInitialSize]; 1089condSectionEntityIds = tmp;
14 references to condSectionEntityIds
System.Xml (14)
System\Xml\Schema\DtdParser.cs (7)
551if ( validate && currentEntityId != condSectionEntityIds[condSectionDepth] ) { 1472if ( condSectionEntityIds == null ) { 1475else if ( condSectionEntityIds.Length == condSectionDepth ) { 1476int[] tmp = new int[condSectionEntityIds.Length*2]; 1477Array.Copy( condSectionEntityIds, 0, tmp, 0, condSectionEntityIds.Length ); 1480condSectionEntityIds[condSectionDepth] = csEntityId;
System\Xml\Schema\DtdParserAsync.cs (7)
196if ( validate && currentEntityId != condSectionEntityIds[condSectionDepth] ) { 1083if ( condSectionEntityIds == null ) { 1086else if ( condSectionEntityIds.Length == condSectionDepth ) { 1087int[] tmp = new int[condSectionEntityIds.Length*2]; 1088Array.Copy( condSectionEntityIds, 0, tmp, 0, condSectionEntityIds.Length ); 1091condSectionEntityIds[condSectionDepth] = csEntityId;