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