1 write to innerReader
System.Activities (1)
System\Activities\XamlIntegration\DynamicActivityXamlReader.cs (1)
90
this.
innerReader
= innerReader;
23 references to innerReader
System.Activities (23)
System\Activities\XamlIntegration\DynamicActivityXamlReader.cs (23)
218
this.
innerReader
.Close();
243
this.nodeReader = this.
innerReader
;
244
this.nodeReaderLineInfo = this.
innerReader
as IXamlLineInfo;
251
Fx.Assert(object.ReferenceEquals(this.
innerReader
, this.nodeReader), "readers must match at this point");
256
bool innerReaderResult = this.
innerReader
.Read();
258
while (continueProcessing && !this.
innerReader
.IsEof)
282
this.namespaceTable.ManageNamespace(this.
innerReader
);
284
switch (this.
innerReader
.NodeType)
287
XamlMember currentMember = this.
innerReader
.Member;
302
this.bufferedProperties.BufferDefaultValue(currentMember.Name, this.activityPropertyValue, this.
innerReader
, this.innerReaderLineInfo);
379
if (this.
innerReader
.Type.UnderlyingType == typeof(Activity))
382
this.activityXamlType = this.
innerReader
.Type;
393
else if (this.
innerReader
.Type.IsGeneric && this.
innerReader
.Type.UnderlyingType != null
394
&& this.
innerReader
.Type.UnderlyingType.GetGenericTypeDefinition() == typeof(Activity<>))
397
this.activityXamlType = this.
innerReader
.Type;
399
Type activityType = this.
innerReader
.Type.TypeArguments[0].UnderlyingType;
438
string fullName = (string)this.
innerReader
.Value;
459
this.builderStack.ProcessNode(this.
innerReader
, this.innerReaderLineInfo, this.nodeQueue.Writer, out writeNode);
462
this.
innerReader
.Read();
466
this.nodeQueue.Writer.WriteNode(this.
innerReader
, this.innerReaderLineInfo);
477
XamlReader subReader = this.
innerReader
.ReadSubtree();
892
XamlReader subReader = parent.
innerReader
.ReadSubtree();