3 writes to impl
System.Xml (3)
System\Xml\Core\XmlValidatingReader.cs (3)
29impl = new XmlValidatingReaderImpl( reader ); 37impl = new XmlValidatingReaderImpl( xmlFragment, fragType, context ); 45impl = new XmlValidatingReaderImpl(xmlFragment, fragType, context);
61 references to impl
System.Xml (61)
System\Xml\Core\XmlValidatingReader.cs (61)
30impl.OuterReader = this; 38impl.OuterReader = this; 46impl.OuterReader = this; 53get { return impl.NodeType; } 57get { return impl.Name; } 61get { return impl.LocalName; } 65get { return impl.NamespaceURI; } 69get { return impl.Prefix; } 73get { return impl.HasValue; } 77get { return impl.Value; } 81get { return impl.Depth; } 85get { return impl.BaseURI; } 89get { return impl.IsEmptyElement; } 93get { return impl.IsDefault; } 97get { return impl.QuoteChar; } 101get { return impl.XmlSpace; } 105get { return impl.XmlLang; } 110public override int AttributeCount { get { return impl.AttributeCount; } } 113return impl.GetAttribute( name ); 117return impl.GetAttribute( localName, namespaceURI ); 121return impl.GetAttribute( i ); 125return impl.MoveToAttribute( name ); 129return impl.MoveToAttribute( localName, namespaceURI ); 133impl.MoveToAttribute( i ); 137return impl.MoveToFirstAttribute(); 141return impl.MoveToNextAttribute(); 145return impl.MoveToElement(); 149return impl.ReadAttributeValue(); 153return impl.Read(); 157get { return impl.EOF; } 161impl.Close(); 165get { return impl.ReadState; } 169get { return impl.NameTable; } 173string ns = impl.LookupNamespace( prefix ); 185impl.ResolveEntity(); 194return impl.ReadContentAsBase64( buffer, index, count ); 198return impl.ReadElementContentAsBase64( buffer, index, count ); 202return impl.ReadContentAsBinHex( buffer, index, count ); 206return impl.ReadElementContentAsBinHex( buffer, index, count ); 212impl.MoveOffEntityReference(); 221public int LineNumber { get { return impl.LineNumber; } } 223public int LinePosition { get { return impl.LinePosition; } } 229return impl.GetNamespacesInScope( scope ); 233return impl.LookupNamespace( prefix ); 237return impl.LookupPrefix( namespaceName ); 244add { impl.ValidationEventHandler += value; } 245remove { impl.ValidationEventHandler -= value; } 249get { return impl.SchemaType; } 253get { return impl.Reader; } 257get { return impl.ValidationType; } 258set { impl.ValidationType = value; } 262get { return impl.Schemas; } 266get { return impl.EntityHandling; } 267set { impl.EntityHandling = value; } 271set { impl.XmlResolver = value; } 275get { return impl.Namespaces; } 276set { impl.Namespaces = value; } 280return impl.ReadTypedValue(); 284get { return impl.Encoding; } 290get { return impl; } 294get { return impl.DtdInfo; }