2 writes to s_sourceInfoTable
PresentationCore (2)
System\Windows\Diagnostics\XamlSourceInfoHelper.cs (2)
64
s_sourceInfoTable
= new ConditionalWeakTable<object, XamlSourceInfo>();
68
s_sourceInfoTable
= null;
7 references to s_sourceInfoTable
PresentationCore (7)
System\Windows\Diagnostics\XamlSourceInfoHelper.cs (7)
49
get { return (
s_sourceInfoTable
!= null); }
99
if (
s_sourceInfoTable
!= null && args != null)
112
if (
s_sourceInfoTable
!= null && obj != null && !(elementLineNumber == 0 && elementLinePosition == 0))
129
s_sourceInfoTable
.Remove(obj);
130
s_sourceInfoTable
.Add(obj, new XamlSourceInfo(sourceUri, elementLineNumber, elementLinePosition));
139
if (
s_sourceInfoTable
!= null && obj != null &&
s_sourceInfoTable
.TryGetValue(obj, out info))