1 write to reader
System.Data.Services.Client (1)
System\Data\Services\Client\Xml\XmlWrappingReader.cs (1)
317this.reader = value;
49 references to reader
System.Data.Services.Client (49)
System\Data\Services\Client\Xml\XmlWrappingReader.cs (49)
56return this.reader.AttributeCount; 74return this.reader.BaseURI; 83return this.reader.CanResolveEntity; 92return this.reader.Depth; 103return this.reader.EOF; 112return this.reader.HasAttributes; 121return this.reader.HasValue; 133return this.reader.IsDefault; 142return this.reader.IsEmptyElement; 179return this.reader.LocalName; 188return this.reader.Name; 197return this.reader.NamespaceURI; 206return this.reader.NameTable; 215return this.reader.NodeType; 224return this.reader.Prefix; 235return this.reader.QuoteChar; 246return this.reader.ReadState; 257return this.reader.SchemaInfo; 267return this.reader.Settings; 276return this.reader.Value; 285return this.reader.ValueType; 294return this.reader.XmlLang; 303return this.reader.XmlSpace; 312return this.reader; 329this.reader.Close(); 337return this.reader.GetAttribute(i); 348return this.reader.GetAttribute(name); 360return this.reader.GetAttribute(name, namespaceURI); 377return this.reader.LookupNamespace(prefix); 384this.reader.MoveToAttribute(i); 394return this.reader.MoveToAttribute(name); 405return this.reader.MoveToAttribute(name, ns); 415return this.reader.MoveToElement(); 425return this.reader.MoveToFirstAttribute(); 432return this.reader.MoveToNextAttribute(); 439if (this.reader.NodeType == XmlNodeType.EndElement) 447this.reader.MoveToElement(); 448if (this.reader.IsEmptyElement) 454bool result = this.reader.Read(); 457if (this.reader.NodeType == XmlNodeType.Element && 458this.reader.HasAttributes) 460string baseAttribute = this.reader.GetAttribute(XmlConstants.XmlBaseAttributeNameWithPrefix); 486this.xmlBaseStack.Push(new XmlBaseState(newBaseUri, this.reader.Depth)); 497return this.reader.ReadAttributeValue(); 503this.reader.ResolveEntity(); 509this.reader.Skip(); 534if (this.reader != null) 536((IDisposable)this.reader).Dispose(); 548if (this.xmlBaseStack != null && this.xmlBaseStack.Count > 0 && this.reader.Depth == this.xmlBaseStack.Peek().Depth)