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