16 overrides of Depth
dotnet-svcutil-lib (16)
FrameworkFork\Microsoft.Xml\Xml\BinaryXml\XmlBinaryReader.cs (1)
542
public override int
Depth
FrameworkFork\Microsoft.Xml\Xml\Core\XmlAsyncCheckReader.cs (1)
157
public override int
Depth
FrameworkFork\Microsoft.Xml\Xml\Core\XmlTextReader.cs (1)
158
public override int
Depth
FrameworkFork\Microsoft.Xml\Xml\Core\XmlTextReaderImpl.cs (1)
936
public override int
Depth
FrameworkFork\Microsoft.Xml\Xml\Core\XmlValidatingReader.cs (1)
92
public override int
Depth
FrameworkFork\Microsoft.Xml\Xml\Core\XmlValidatingReaderImpl.cs (1)
351
public override int
Depth
FrameworkFork\Microsoft.Xml\Xml\Core\XmlWrappingReader.cs (1)
46
public override int
Depth
{ get { return reader.Depth; } }
FrameworkFork\Microsoft.Xml\Xml\Core\XsdCachingReader.cs (1)
175
public override int
Depth
FrameworkFork\Microsoft.Xml\Xml\Core\XsdValidatingReader.cs (1)
329
public override int
Depth
FrameworkFork\Microsoft.Xml\Xml\Dom\XmlNodeReader.cs (1)
1254
public override int
Depth
FrameworkFork\Microsoft.Xml\Xml\Serialization\XmlCountingReader.cs (1)
45
public override int
Depth
{ get { return _innerReader.Depth; } }
FrameworkFork\Microsoft.Xml\Xml\XPath\XPathNavigatorReader.cs (1)
965
public override int
Depth
FrameworkFork\System.Runtime.Serialization\System\Runtime\Serialization\ExtensionDataReader.cs (1)
117
public override int
Depth
{ get { return IsXmlDataNode ? _xmlNodeReader.Depth : _depth; } }
FrameworkFork\System.Runtime.Serialization\System\Runtime\Serialization\XmlSerializableReader.cs (1)
79
public override int
Depth
{ get { return InnerReader.Depth; } }
FrameworkFork\System.Runtime.Serialization\System\Xml\XmlBaseReader.cs (1)
498
public sealed override int
Depth
FrameworkFork\System.Runtime.Serialization\System\Xml\XmlDictionaryReader.cs (1)
1243
public override int
Depth
90 references to Depth
dotnet-svcutil-lib (90)
FrameworkFork\Microsoft.Xml\Xml\BinaryXml\XmlBinaryReader.cs (1)
556
adj = _textXmlReader.
Depth
;
FrameworkFork\Microsoft.Xml\Xml\Core\XmlAsyncCheckReader.cs (1)
162
return _coreReader.
Depth
;
FrameworkFork\Microsoft.Xml\Xml\Core\XmlReader.cs (9)
1060
int parentDepth =
Depth
;
1083
while (Read() &&
Depth
> parentDepth)
1106
int parentDepth =
Depth
;
1130
while (Read() &&
Depth
> parentDepth)
1261
int d = this.NodeType == XmlNodeType.None ? -1 : this.
Depth
;
1262
while (this.Read() && (d < this.
Depth
))
1303
if (d == this.
Depth
&& this.NodeType == XmlNodeType.EndElement)
1527
int depth =
Depth
;
1529
while (Read() && depth <
Depth
)
FrameworkFork\Microsoft.Xml\Xml\Core\XmlReaderAsync.cs (5)
234
int d = this.NodeType == XmlNodeType.None ? -1 : this.
Depth
;
235
while (await this.ReadAsync().ConfigureAwait(false) && (d < this.
Depth
))
276
if (d == this.
Depth
&& this.NodeType == XmlNodeType.EndElement)
327
int depth =
Depth
;
329
while (await ReadAsync().ConfigureAwait(false) && depth <
Depth
)
FrameworkFork\Microsoft.Xml\Xml\Core\XmlSubtreeReader.cs (15)
100
_initialDepth = reader.
Depth
;
167
int depth = reader.
Depth
- _initialDepth;
473
Debug.Assert(reader.
Depth
>= _initialDepth);
474
if (reader.
Depth
== _initialDepth)
544
Debug.Assert(reader.
Depth
>= _initialDepth);
546
if (reader.
Depth
== _initialDepth && reader.NodeType == XmlNodeType.Element && !reader.IsEmptyElement)
551
while (reader.
Depth
> _initialDepth && reader.Read())
581
Debug.Assert(reader.
Depth
>= _initialDepth);
582
if (reader.
Depth
== _initialDepth)
589
while (reader.NodeType != XmlNodeType.EndElement && reader.
Depth
> _initialDepth)
610
Debug.Assert(reader.
Depth
>= _initialDepth);
933
if (reader.
Depth
== _initialDepth)
1068
if (reader.
Depth
== _initialDepth)
1409
if (reader.
Depth
== _initialDepth)
1437
if (reader.
Depth
== _initialDepth)
FrameworkFork\Microsoft.Xml\Xml\Core\XmlSubtreeReaderAsync.cs (10)
47
Debug.Assert(reader.
Depth
>= _initialDepth);
48
if (reader.
Depth
== _initialDepth)
118
Debug.Assert(reader.
Depth
>= _initialDepth);
119
if (reader.
Depth
== _initialDepth)
126
while (reader.NodeType != XmlNodeType.EndElement && reader.
Depth
> _initialDepth)
147
Debug.Assert(reader.
Depth
>= _initialDepth);
350
if (reader.
Depth
== _initialDepth)
485
if (reader.
Depth
== _initialDepth)
613
if (reader.
Depth
== _initialDepth)
641
if (reader.
Depth
== _initialDepth)
FrameworkFork\Microsoft.Xml\Xml\Core\XmlValidatingReaderImpl.cs (4)
355
return _coreReader.
Depth
;
1050
int initialDepth = _coreReader.
Depth
;
1052
while (_outerReader.Read() && _coreReader.
Depth
> initialDepth) ;
1099
if (_coreReader.
Depth
> 0 || _coreReaderImpl.FragmentType != XmlNodeType.Document)
FrameworkFork\Microsoft.Xml\Xml\Core\XmlWrappingReader.cs (1)
46
public override int Depth { get { return reader.
Depth
; } }
FrameworkFork\Microsoft.Xml\Xml\Core\XmlWriter.cs (3)
408
int d = reader.NodeType == XmlNodeType.None ? -1 : reader.
Depth
;
467
} while (reader.Read() && (d < reader.
Depth
|| (d == reader.
Depth
&& reader.NodeType == XmlNodeType.EndElement)));
FrameworkFork\Microsoft.Xml\Xml\Core\XsdCachingReader.cs (8)
88
element.SetItemData(_coreReader.LocalName, _coreReader.Prefix, _coreReader.NamespaceURI, _coreReader.
Depth
); //Only created for element node type
432
recordedNode.SetItemData(_coreReader.LocalName, _coreReader.Prefix, _coreReader.NamespaceURI, _coreReader.
Depth
); //Only created for element node type
445
recordedNode.Depth = _coreReader.
Depth
;
497
ValidatingReaderNodeData textNode = RecordTextNode(textValue, originalStringValue, _coreReader.
Depth
+ 1, 0, 0);
509
recordedNode.SetItemData(_coreReader.LocalName, _coreReader.Prefix, _coreReader.NamespaceURI, _coreReader.
Depth
);
559
int startDepth = _coreReader.
Depth
- 1;
560
while (_coreReader.Read() && _coreReader.
Depth
> startDepth)
723
attInfo.SetItemData(_coreReader.LocalName, _coreReader.Prefix, _coreReader.NamespaceURI, _coreReader.
Depth
);
FrameworkFork\Microsoft.Xml\Xml\Core\XsdCachingReaderAsync.cs (4)
58
recordedNode.SetItemData(_coreReader.LocalName, _coreReader.Prefix, _coreReader.NamespaceURI, _coreReader.
Depth
); //Only created for element node type
71
recordedNode.Depth = _coreReader.
Depth
;
119
int startDepth = _coreReader.
Depth
- 1;
120
while (await _coreReader.ReadAsync().ConfigureAwait(false) && _coreReader.
Depth
> startDepth)
FrameworkFork\Microsoft.Xml\Xml\Core\XsdValidatingReader.cs (3)
337
return _coreReader.
Depth
;
1954
if (_processInlineSchema && IsXSDRoot(_coreReader.LocalName, _coreReader.NamespaceURI) && _coreReader.
Depth
> 0)
2036
int depth = _coreReader.
Depth
;
FrameworkFork\Microsoft.Xml\Xml\Core\XsdValidatingReaderAsync.cs (2)
530
if (_processInlineSchema && IsXSDRoot(_coreReader.LocalName, _coreReader.NamespaceURI) && _coreReader.
Depth
> 0)
612
int depth = _coreReader.
Depth
;
FrameworkFork\Microsoft.Xml\Xml\schema\Parser.cs (7)
77
_schemaXmlDepth = reader.
Depth
;
173
if (_reader.
Depth
> _markupDepth)
204
if (_reader.
Depth
== _schemaXmlDepth)
211
_markupDepth = _reader.
Depth
;
223
_markupDepth = _reader.
Depth
;
242
if (_reader.
Depth
== _markupDepth)
264
if (_reader.
Depth
== _schemaXmlDepth)
FrameworkFork\Microsoft.Xml\Xml\schema\ParserAsync.cs (1)
42
_schemaXmlDepth = reader.
Depth
;
FrameworkFork\Microsoft.Xml\Xml\Serialization\XmlCountingReader.cs (1)
45
public override int Depth { get { return _innerReader.
Depth
; } }
FrameworkFork\Microsoft.Xml\Xml\XPath\XPathDocument.cs (3)
186
initialDepth = reader.
Depth
;
200
if (!topLevelReader && reader.
Depth
< initialDepth)
268
if (space == XmlSpace.Preserve && (!topLevelReader || reader.
Depth
!= 0))
FrameworkFork\System.Runtime.Serialization\System\Runtime\Serialization\XmlReaderDelegator.cs (1)
911
internal int Depth { get { return reader.
Depth
; } }
FrameworkFork\System.Runtime.Serialization\System\Runtime\Serialization\XmlSerializableReader.cs (2)
55
if (reader.
Depth
== _startDepth)
79
public override int Depth { get { return InnerReader.
Depth
; } }
FrameworkFork\System.Runtime.Serialization\System\Runtime\Serialization\XmlSerializableServices.cs (2)
37
int startDepth = xmlReader.
Depth
;
39
while (xmlReader.
Depth
> startDepth && xmlReader.NodeType != XmlNodeType.EndElement)
FrameworkFork\System.Runtime.Serialization\System\Xml\XmlDictionaryReader.cs (1)
1247
return _reader.
Depth
;
FrameworkFork\System.Runtime.Serialization\System\Xml\XmlDictionaryWriter.cs (4)
354
int d = (reader.NodeType == XmlNodeType.None ? -1 : reader.
Depth
);
364
else if (reader.
Depth
> d && reader.IsStartArray(out type))
400
while (d < reader.
Depth
|| (d == reader.
Depth
&& reader.NodeType == XmlNodeType.EndElement));
FrameworkFork\System.ServiceModel\System\ServiceModel\Channels\MessageHeaders.cs (2)
812
int depth = reader.
Depth
;
817
} while (reader.Read() && depth < reader.
Depth
);