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