1 write to reader
System.Runtime.Serialization (1)
System\Xml\XmlDictionaryReader.cs (1)
1353this.reader = reader;
65 references to reader
System.Runtime.Serialization (65)
System\Xml\XmlDictionaryReader.cs (65)
1361return reader.AttributeCount; 1369return reader.BaseURI; 1375get { return reader.CanReadBinaryContent; } 1380get { return reader.CanReadValueChunk; } 1385reader.Close(); 1393return reader.Depth; 1401return reader.EOF; 1407return reader.GetAttribute(index); 1412return reader.GetAttribute(name); 1417return reader.GetAttribute(name, namespaceUri); 1424return reader.HasValue; 1432return reader.IsDefault; 1440return reader.IsEmptyElement; 1446return reader.IsStartElement(name); 1451return reader.IsStartElement(localName, namespaceUri); 1458return reader.LocalName; 1464return reader.LookupNamespace(namespaceUri); 1469reader.MoveToAttribute(index); 1474return reader.MoveToAttribute(name); 1479return reader.MoveToAttribute(name, namespaceUri); 1484return reader.MoveToElement(); 1489return reader.MoveToFirstAttribute(); 1494return reader.MoveToNextAttribute(); 1501return reader.Name; 1509return reader.NamespaceURI; 1517return reader.NameTable; 1525return reader.NodeType; 1533return reader.Prefix; 1541return reader.QuoteChar; 1547return reader.Read(); 1552return reader.ReadAttributeValue(); 1557return reader.ReadElementString(name); 1562return reader.ReadElementString(localName, namespaceUri); 1567return reader.ReadInnerXml(); 1572return reader.ReadOuterXml(); 1577reader.ReadStartElement(name); 1582reader.ReadStartElement(localName, namespaceUri); 1587reader.ReadEndElement(); 1592return reader.ReadString(); 1599return reader.ReadState; 1605reader.ResolveEntity(); 1612return reader[index]; 1620return reader[name]; 1628return reader[name, namespaceUri]; 1636return reader.Value; 1644return reader.XmlLang; 1652return reader.XmlSpace; 1658return reader.ReadElementContentAsBase64(buffer, offset, count); 1663return reader.ReadContentAsBase64(buffer, offset, count); 1668return reader.ReadElementContentAsBinHex(buffer, offset, count); 1673return reader.ReadContentAsBinHex(buffer, offset, count); 1678return reader.ReadValueChunk(chars, offset, count); 1685return reader.ValueType; 1691return reader.ReadContentAsBoolean(); 1696return reader.ReadContentAsDateTime(); 1702return (Decimal)reader.ReadContentAs(typeof(Decimal), null); 1707return reader.ReadContentAsDouble(); 1712return reader.ReadContentAsInt(); 1717return reader.ReadContentAsLong(); 1722return reader.ReadContentAsFloat(); 1727return reader.ReadContentAsString(); 1732return reader.ReadContentAs(type, namespaceResolver); 1737IXmlLineInfo lineInfo = reader as IXmlLineInfo; 1749IXmlLineInfo lineInfo = reader as IXmlLineInfo; 1762IXmlLineInfo lineInfo = reader as IXmlLineInfo;