Base:
property
Depth
System.Xml.XmlReader.Depth
34 references to Depth
ReachFramework (2)
PrintConfig\PrtCap_Reader.cs (2)
127
(_xmlReader.
Depth
< depth))
135
(_xmlReader.
Depth
!= depth) ||
System.Configuration.ConfigurationManager (32)
System\Configuration\BaseConfigurationRecord.cs (11)
582
if (xmlUtil.Reader.
Depth
== 1) ScanSections(xmlUtil);
1389
while (xmlUtil.Reader.
Depth
> 0)
1435
int depth = xmlUtil.Reader.
Depth
;
1438
while (xmlUtil.Reader.
Depth
> depth)
1788
if ((xmlUtil.Reader.
Depth
!= 1) || (xmlUtil.Reader.Name != ConfigSectionsTag))
1817
int depth = xmlUtil.Reader.
Depth
;
1820
while (xmlUtil.Reader.
Depth
== depth + 1)
2094
if (xmlUtil.Reader.
Depth
> depth + 1)
2100
while (xmlUtil.Reader.
Depth
> depth + 1) xmlUtil.ReadToNextElement();
2340
depth = xmlUtil.Reader.
Depth
;
2344
while (xmlUtil.Reader.
Depth
== depth + 1)
System\Configuration\MgmtConfigurationRecord.cs (9)
620
if (reader.
Depth
!= 0)
639
if ((reader.
Depth
<= 0) && (reader.NodeType != XmlNodeType.EndElement))
2312
bool skipFirstIndent = (reader.
Depth
> 0) && (reader.NodeType == XmlNodeType.Element);
2431
int depth = reader.
Depth
;
2432
while (reader.
Depth
== depth)
2670
int depth = reader.
Depth
;
2671
while (reader.
Depth
== depth)
3100
while (reader.
Depth
>= 1)
3126
while (reader.
Depth
> 0) reader.Read();
System\Configuration\XmlUtil.cs (12)
216
int currentDepth = Reader.
Depth
;
219
while (Reader.
Depth
>= currentDepth) Reader.Skip();
361
int depth = Reader.
Depth
;
397
Debug.Assert(Reader.
Depth
== depth, "We should be at the same depth as the opening Element");
420
depth = Reader.
Depth
;
430
if (Reader.
Depth
< depth) break;
463
int depth = limitDepth ? Reader.
Depth
: 0;
496
if (Reader.
Depth
< depth) break;
509
int depth = Reader.
Depth
;
516
while (Reader.
Depth
> depth) CopyXmlNode(utilWriter);
1011
utilWriter.AppendIndent(linePosition, indent, reader.
Depth
, newLine);
1058
utilWriter.AppendIndent(linePosition, indent, reader.
Depth
- 1, true);