4 instantiations of SourceValueInfo
PresentationFramework (4)
MS\Internal\Data\PathParser.cs (4)
92return new SourceValueInfo[] { new SourceValueInfo(SourceValueType.Direct, DrillIn.Never, (string)null) }; 201? new SourceValueInfo(SourceValueType.Property, _drillIn, name) 202: new SourceValueInfo(SourceValueType.Direct, _drillIn, (string)null); 356SourceValueInfo info = new(SourceValueType.Indexer, _drillIn, paramList);
14 references to SourceValueInfo
PresentationFramework (14)
MS\Internal\Data\ClrBindingWorker.cs (2)
468SourceValueInfo svi = PW.GetSourceValueInfo(k); 483SourceValueInfo svi = PW.GetSourceValueInfo(k);
MS\Internal\Data\PathParser.cs (7)
83public SourceValueInfo[] Parse(string path) 92return new SourceValueInfo[] { new SourceValueInfo(SourceValueType.Direct, DrillIn.Never, (string)null) }; 143return Array.Empty<SourceValueInfo>(); 164return _error is null ? _sourceValueInfos.ToArray() : Array.Empty<SourceValueInfo>(); 200SourceValueInfo info = (name.Length > 0) 356SourceValueInfo info = new(SourceValueType.Indexer, _drillIn, paramList); 382private readonly List<SourceValueInfo> _sourceValueInfos = new();
MS\Internal\Data\PropertyPathWorker.cs (3)
526internal SourceValueInfo GetSourceValueInfo(int level) 558private SourceValueInfo[] SVI { get { return _parent.SVI; } } 922SourceValueInfo svi = SVI[k];
System\Windows\PropertyPath.cs (2)
295internal SourceValueInfo[] SVI 973private SourceValueInfo[] _arySVI; // static description of each level in the path