1 write to readers
System.Activities (1)
System\Activities\XamlIntegration\ConcatenatingXamlReader.cs (1)
22this.readers = ((IEnumerable<XamlReader>)readers).GetEnumerator();
14 references to readers
System.Activities (14)
System\Activities\XamlIntegration\ConcatenatingXamlReader.cs (14)
23if (this.readers.MoveNext()) 25this.schemaContext = this.readers.Current.SchemaContext; 35get { return this.isEof ? true : this.readers.Current.IsEof; } 40get { return this.isEof ? null : this.readers.Current.Member; } 45get { return this.isEof ? null : this.readers.Current.Namespace; } 50get { return this.isEof ? XamlNodeType.None : this.readers.Current.NodeType; } 60get { return this.isEof ? null : this.readers.Current.Type; } 65get { return this.isEof ? null : this.readers.Current.Value; } 72readers.Current.Close(); 73while (readers.MoveNext()) 75readers.Current.Close(); 88if (this.readers.Current.Read()) 92this.readers.Current.Close(); 94while (this.readers.MoveNext());