1 write to reader
dotnet-svcutil-lib (1)
FrameworkFork\System.Runtime.Serialization\System\Runtime\Serialization\XmlReaderDelegator.cs (1)
25this.reader = reader;
56 references to reader
dotnet-svcutil-lib (56)
FrameworkFork\System.Runtime.Serialization\System\Runtime\Serialization\XmlReaderDelegator.cs (56)
31get { return reader; } 36get { return isEndOfEmptyElement ? 0 : reader.AttributeCount; } 41return isEndOfEmptyElement ? null : reader.GetAttribute(name); 46return isEndOfEmptyElement ? null : reader.GetAttribute(name, namespaceUri); 53return reader.GetAttribute(i); 64return ns == reader.NamespaceURI; 72return localName == reader.LocalName; 80return ns.Value == reader.NamespaceURI; 88return localName.Value == reader.LocalName; 98if (reader.NamespaceURI == ns.Value) 119return !isEndOfEmptyElement && reader.IsStartElement(); 124return !isEndOfEmptyElement && reader.IsStartElement(localname, ns); 134return !isEndOfEmptyElement && reader.IsStartElement(localname.Value, ns.Value); 141return isEndOfEmptyElement ? false : reader.MoveToAttribute(name); 146return isEndOfEmptyElement ? false : reader.MoveToAttribute(name, ns); 153reader.MoveToAttribute(i); 158return isEndOfEmptyElement ? false : reader.MoveToElement(); 163return isEndOfEmptyElement ? false : reader.MoveToFirstAttribute(); 168return isEndOfEmptyElement ? false : reader.MoveToNextAttribute(); 177get { return isEndOfEmptyElement ? XmlNodeType.EndElement : reader.NodeType; } 184reader.MoveToElement(); 185if (!reader.IsEmptyElement) 186return reader.Read(); 190return reader.Read(); 201return reader.MoveToContent(); 206return isEndOfEmptyElement ? false : reader.ReadAttributeValue(); 218reader.ReadEndElement(); 258return reader.ReadElementContentAsString(); 263return isEndOfEmptyElement ? String.Empty : reader.ReadContentAsString(); 275return reader.ReadElementContentAsBoolean(); 283return reader.ReadContentAsBoolean(); 295return reader.ReadElementContentAsFloat(); 308return reader.ReadElementContentAsDouble(); 321return reader.ReadElementContentAsDecimal(); 336return ReadContentAsBase64(reader.ReadElementContentAsString()); 375return XmlConvert.ToDateTime(reader.ReadElementContentAsString(), XmlDateTimeSerializationMode.RoundtripKind); 388return reader.ReadElementContentAsInt(); 396return reader.ReadContentAsInt(); 408return reader.ReadElementContentAsLong(); 496string str = reader.ReadElementContentAsString(); 534string str = reader.ReadElementContentAsString(); 547string str = reader.ReadElementContentAsString(); 875return (reader is IXmlNamespaceResolver) ? ((IXmlNamespaceResolver)reader).GetNamespacesInScope(scope) : null; 881IXmlLineInfo iXmlLineInfo = reader as IXmlLineInfo; 889IXmlLineInfo iXmlLineInfo = reader as IXmlLineInfo; 898IXmlLineInfo iXmlLineInfo = reader as IXmlLineInfo; 906internal string Name { get { return reader.Name; } } 907internal string LocalName { get { return reader.LocalName; } } 908internal string NamespaceURI { get { return reader.NamespaceURI; } } 909internal string Value { get { return reader.Value; } } 910internal Type ValueType { get { return reader.ValueType; } } 911internal int Depth { get { return reader.Depth; } } 912internal string LookupNamespace(string prefix) { return reader.LookupNamespace(prefix); } 913internal bool EOF { get { return reader.EOF; } } 917reader.Skip();