2 overrides of ReadToNextSibling
System.Xml (2)
System\Xml\Core\XmlAsyncCheckReader.cs (1)
600public override bool ReadToNextSibling(string name) {
System\Xml\Serialization\XmlCountingReader.cs (1)
313public override bool ReadToNextSibling(string name)
4 references to ReadToNextSibling
System.Activities.DurableInstancing (2)
System\Activities\DurableInstancing\DefaultObjectSerializer.cs (1)
73while (dictionaryReader.ReadToNextSibling("Property"));
System\Activities\DurableInstancing\XmlPropertyBag.cs (1)
49while (reader.ReadToNextSibling("Property"));
System.Xml (2)
System\Xml\Core\XmlAsyncCheckReader.cs (1)
602return coreReader.ReadToNextSibling(name);
System\Xml\Serialization\XmlCountingReader.cs (1)
316return innerReader.ReadToNextSibling(name);