6 instantiations of DocumentRange
System.Activities (6)
System\Activities\Debugger\XamlDebuggerXmlReader.cs (3)
625DocumentRange realValueRange = new DocumentRange(valueRange.Start, 627this.SourceLocationCollector.AddValueRange(new DocumentRange(myStartBracket, myRealEndBracket), realValueRange); 754new DocumentRange(this.startLine, this.startColumn, this.endLine, this.endColumn), out valueRange))
System\Activities\Debugger\XmlReaderWithSourceLocation.cs (3)
162this.ContentValueRanges.Add(endElementLocation, new DocumentRange(contentStartLocation, contentEnd)); 213DocumentRange emptyElementRange = new DocumentRange(startBracket, endBracket); 224return new DocumentRange(attributeStart, attributeEnd);
33 references to DocumentRange
System.Activities (33)
System\Activities\Debugger\DocumentRange.cs (2)
11internal class DocumentRange : IEquatable<DocumentRange> 40public bool Equals(DocumentRange other)
System\Activities\Debugger\XamlDebuggerXmlReader.cs (17)
60private Dictionary<XamlNode, DocumentRange> initializationValueRanges; 86this.initializationValueRanges = new Dictionary<XamlNode, DocumentRange>(); 109this.initializationValueRanges = new Dictionary<XamlNode, DocumentRange>(); 455DocumentRange valueRange; 579private void OnValueNodeDeserialized(object value, DocumentRange attributeValueLocation) 602DocumentRange myRange; 622DocumentRange valueRange; 625DocumentRange realValueRange = new DocumentRange(valueRange.Start, 690private Dictionary<DocumentRange, DocumentRange> objRgnToInitValueRgnMapping; 695objRgnToInitValueRgnMapping = new Dictionary<DocumentRange, DocumentRange>(); 731internal void AddValueRange(DocumentRange startNodeRange, DocumentRange valueRange) 752DocumentRange valueRange; 813private DocumentRange attributeValueRange; 815internal ValueNodeXamlMemberInvoker(XamlDebuggerXmlReader parent, XamlMemberInvoker wrapped, DocumentRange attributeValueRange)
System\Activities\Debugger\XmlReaderWithSourceLocation.cs (14)
14private Dictionary<DocumentLocation, DocumentRange> attributeValueRanges; 15private Dictionary<DocumentLocation, DocumentRange> emptyElementRanges; 16private Dictionary<DocumentLocation, DocumentRange> contentValueRanges; 38public Dictionary<DocumentLocation, DocumentRange> AttributeValueRanges 44this.attributeValueRanges = new Dictionary<DocumentLocation, DocumentRange>(); 51public Dictionary<DocumentLocation, DocumentRange> ContentValueRanges 57this.contentValueRanges = new Dictionary<DocumentLocation, DocumentRange>(); 64public Dictionary<DocumentLocation, DocumentRange> EmptyElementRanges 70this.emptyElementRanges = new Dictionary<DocumentLocation, DocumentRange>(); 119DocumentRange emptyElementRange = this.FindEmptyElementRange(elementLocation); 143DocumentRange attributeValueRange = this.FindAttributeValueLocation(memberLocation); 207private DocumentRange FindEmptyElementRange(DocumentLocation elementLocation) 213DocumentRange emptyElementRange = new DocumentRange(startBracket, endBracket); 217private DocumentRange FindAttributeValueLocation(DocumentLocation memberLocation)