1 write to reader
System.IdentityModel (1)
System\IdentityModel\WrappedXmlDictionaryReader.cs (1)
37this.reader = reader;
65 references to reader
System.IdentityModel (65)
System\IdentityModel\WrappedXmlDictionaryReader.cs (65)
45return this.reader.AttributeCount; 53return this.reader.BaseURI; 59get { return this.reader.CanReadBinaryContent; } 64get { return this.reader.CanReadValueChunk; } 71return this.reader.Depth; 79return this.reader.EOF; 87return this.reader.HasValue; 95return this.reader.IsDefault; 103return this.reader.IsEmptyElement; 111return this.reader.LocalName; 119return this.reader.Name; 127return this.reader.NamespaceURI; 135return this.reader.NameTable; 143return this.reader.NodeType; 151return this.reader.Prefix; 159return this.reader.QuoteChar; 167return this.reader.ReadState; 175return this.reader.Value; 183return this.reader.XmlLang; 191return this.reader.XmlSpace; 199return this.reader.ValueType; 207IXmlLineInfo lineInfo = this.reader as IXmlLineInfo; 222IXmlLineInfo lineInfo = this.reader as IXmlLineInfo; 245return this.reader[index]; 253return this.reader[name]; 261return this.reader[name, namespaceUri]; 267this.reader.Close(); 272return this.reader.GetAttribute(index); 277return this.reader.GetAttribute(name); 282return this.reader.GetAttribute(name, namespaceUri); 287return this.reader.IsStartElement(name); 292return this.reader.IsStartElement(localName, namespaceUri); 297return this.reader.LookupNamespace(namespaceUri); 302this.reader.MoveToAttribute(index); 307return this.reader.MoveToAttribute(name); 312return this.reader.MoveToAttribute(name, namespaceUri); 317return this.reader.MoveToElement(); 322return this.reader.MoveToFirstAttribute(); 327return this.reader.MoveToNextAttribute(); 332return this.reader.Read(); 337return this.reader.ReadAttributeValue(); 342return this.reader.ReadElementString(name); 347return this.reader.ReadElementString(localName, namespaceUri); 352return this.reader.ReadInnerXml(); 357return this.reader.ReadOuterXml(); 362this.reader.ReadStartElement(name); 367this.reader.ReadStartElement(localName, namespaceUri); 372this.reader.ReadEndElement(); 377return this.reader.ReadString(); 382this.reader.ResolveEntity(); 387return this.reader.ReadElementContentAsBase64(buffer, offset, count); 392return this.reader.ReadContentAsBase64(buffer, offset, count); 397return this.reader.ReadElementContentAsBinHex(buffer, offset, count); 402return this.reader.ReadContentAsBinHex(buffer, offset, count); 407return this.reader.ReadValueChunk(chars, offset, count); 412return this.reader.ReadContentAsBoolean(); 417return this.reader.ReadContentAsDateTime(); 422return (decimal)this.reader.ReadContentAs(typeof(decimal), null); 427return this.reader.ReadContentAsDouble(); 432return this.reader.ReadContentAsInt(); 437return this.reader.ReadContentAsLong(); 442return this.reader.ReadContentAsFloat(); 447return this.reader.ReadContentAsString(); 452return this.reader.ReadContentAs(valueType, namespaceResolver); 457IXmlLineInfo lineInfo = this.reader as IXmlLineInfo;