10 writes to NameScopeDictionary
System.Xaml (10)
System\Xaml\Context\ObjectWriterContext.cs (8)
64
_stack.CurrentFrame.
NameScopeDictionary
= rootNameScopeDictionary;
97
_stack.CurrentFrame.
NameScopeDictionary
= rootNameScopeDictionary;
802
frame.
NameScopeDictionary
= frame.Instance as XAML3.INameScopeDictionary ?? new NameScopeDictionary(frame.Instance as XAML3.INameScope);
809
frame.
NameScopeDictionary
= HuntAroundForARootNameScope(frame);
816
frame.
NameScopeDictionary
= new NameScope();
821
frame.
NameScopeDictionary
= LookupNameScopeDictionary(parentFrame);
943
rootFrame.
NameScopeDictionary
= nameScopeDictionary;
953
topFrame.
NameScopeDictionary
= LookupNameScopeDictionary(topFrame);
System\Xaml\Context\ObjectWriterFrame.cs (2)
43
NameScopeDictionary
= source.NameScopeDictionary;
55
NameScopeDictionary
= null;
11 references to NameScopeDictionary
System.Xaml (11)
System\Xaml\Context\ObjectWriterContext.cs (10)
798
if (frame.
NameScopeDictionary
is null)
805
if (frame.
NameScopeDictionary
is null)
828
Debug.Assert(frame.
NameScopeDictionary
is not null || frame.Depth == 0);
829
return frame.
NameScopeDictionary
;
843
if (frame.
NameScopeDictionary
!= previousNameScopeDictionary)
853
if (frame.
NameScopeDictionary
is not null && frame.
NameScopeDictionary
!= previousNameScopeDictionary)
855
yield return frame.
NameScopeDictionary
;
933
nameScopeDictionary = frameZero.
NameScopeDictionary
;
951
if (topFrame.
NameScopeDictionary
is null)
System\Xaml\Context\ObjectWriterFrame.cs (1)
43
NameScopeDictionary = source.
NameScopeDictionary
;