3 writes to xmlReaderWithSourceLocation
System.Activities (3)
System\Activities\Debugger\XamlDebuggerXmlReader.cs (3)
80
this.
xmlReaderWithSourceLocation
= new XmlReaderWithSourceLocation(underlyingTextReader);
108
this.
xmlReaderWithSourceLocation
= new XmlReaderWithSourceLocation(textReader);
523
this.
xmlReaderWithSourceLocation
= null;
9 references to xmlReaderWithSourceLocation
System.Activities (9)
System\Activities\Debugger\XamlDebuggerXmlReader.cs (9)
81
this.underlyingReader = new XamlXmlReader(this.
xmlReaderWithSourceLocation
, schemaContext, new XamlXmlReaderSettings { ProvideLineInfo = true, LocalAssembly = localAssembly });
111
while (this.
xmlReaderWithSourceLocation
.Read())
457
bool isInAttribute = this.
xmlReaderWithSourceLocation
.AttributeValueRanges.TryGetValue(currentLocation, out valueRange);
458
bool isInContent = isInAttribute ? false : this.
xmlReaderWithSourceLocation
.ContentValueRanges.TryGetValue(currentLocation, out valueRange);
518
if (this.
xmlReaderWithSourceLocation
!= null)
520
((IDisposable)this.
xmlReaderWithSourceLocation
).Dispose();
604
if (this.
xmlReaderWithSourceLocation
.EmptyElementRanges.TryGetValue(myStartLocation, out myRange))
612
this.
xmlReaderWithSourceLocation
.StartElementLocations.TryGetValue(myStartLocation, out myStartBracket);
613
this.
xmlReaderWithSourceLocation
.EndElementLocations.TryGetValue(myEndLocation, out myEndBracket);