11 overrides of ReadContentAsDouble
System.IdentityModel (2)
System\IdentityModel\IdentityModelWrappedXmlDictionaryReader.cs (1)
385public override Double ReadContentAsDouble()
System\IdentityModel\WrappedXmlDictionaryReader.cs (1)
425public override double ReadContentAsDouble()
System.Runtime.Serialization (4)
System\Runtime\Serialization\XmlSerializableReader.cs (1)
118public override double ReadContentAsDouble() { return InnerReader.ReadContentAsDouble(); }
System\Xml\XmlBaseReader.cs (1)
1706public override Double ReadContentAsDouble()
System\Xml\XmlDictionaryReader.cs (1)
1705public override Double ReadContentAsDouble()
System\Xml\XmlMtomReader.cs (1)
825public override double ReadContentAsDouble()
System.Xml (5)
System\Xml\BinaryXml\XmlBinaryReader.cs (1)
1097public override Double ReadContentAsDouble() {
System\Xml\Core\XmlAsyncCheckReader.cs (1)
206public override double ReadContentAsDouble() {
System\Xml\Core\XmlSubtreeReader.cs (1)
580public override double ReadContentAsDouble() {
System\Xml\Core\XsdValidatingReader.cs (1)
432public override double ReadContentAsDouble() {
System\Xml\Serialization\XmlCountingReader.cs (1)
123public override double ReadContentAsDouble()
13 references to ReadContentAsDouble
System.IdentityModel (2)
System\IdentityModel\IdentityModelWrappedXmlDictionaryReader.cs (1)
387return _reader.ReadContentAsDouble();
System\IdentityModel\WrappedXmlDictionaryReader.cs (1)
427return this.reader.ReadContentAsDouble();
System.Runtime.Serialization (6)
System\Runtime\Serialization\XmlReaderDelegator.cs (1)
435return reader.ReadContentAsDouble();
System\Runtime\Serialization\XmlSerializableReader.cs (1)
118public override double ReadContentAsDouble() { return InnerReader.ReadContentAsDouble(); }
System\Xml\XmlBinaryWriter.cs (1)
1208WriteValue(reader.ReadContentAsDouble());
System\Xml\XmlDictionaryReader.cs (2)
828value = ReadContentAsDouble(); 1707return reader.ReadContentAsDouble();
System\Xml\XmlMtomReader.cs (1)
828return xmlReader.ReadContentAsDouble();
System.Xml (5)
System\Xml\BinaryXml\XmlBinaryReader.cs (1)
1180return base.ReadContentAsDouble();
System\Xml\Core\XmlAsyncCheckReader.cs (1)
208return coreReader.ReadContentAsDouble();
System\Xml\Core\XmlReader.cs (1)
410double value = ReadContentAsDouble();
System\Xml\Core\XmlSubtreeReader.cs (1)
583double value = reader.ReadContentAsDouble();
System\Xml\Serialization\XmlCountingReader.cs (1)
126return innerReader.ReadContentAsDouble();