10 writes to NameScopeDictionary
System.Xaml (10)
System\Xaml\Context\ObjectWriterContext.cs (8)
65
_stack.CurrentFrame.
NameScopeDictionary
= rootNameScopeDictionary;
97
_stack.CurrentFrame.
NameScopeDictionary
= rootNameScopeDictionary;
793
frame.
NameScopeDictionary
= frame.Instance as XAML3.INameScopeDictionary ?? new NameScopeDictionary(frame.Instance as XAML3.INameScope);
799
frame.
NameScopeDictionary
= HuntAroundForARootNameScope(frame);
806
frame.
NameScopeDictionary
= new NameScope();
811
frame.
NameScopeDictionary
= LookupNameScopeDictionary(parentFrame);
929
rootFrame.
NameScopeDictionary
= nameScopeDictionary;
939
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)
789
if (frame.
NameScopeDictionary
is null)
795
if (frame.
NameScopeDictionary
is null)
817
Debug.Assert(frame.
NameScopeDictionary
is not null || frame.Depth == 0);
818
return frame.
NameScopeDictionary
;
832
if (frame.
NameScopeDictionary
!= previousNameScopeDictionary)
840
if (frame.
NameScopeDictionary
is not null && frame.
NameScopeDictionary
!= previousNameScopeDictionary)
842
yield return frame.
NameScopeDictionary
;
919
nameScopeDictionary = frameZero.
NameScopeDictionary
;
937
if (topFrame.
NameScopeDictionary
is null)
System\Xaml\Context\ObjectWriterFrame.cs (1)
43
NameScopeDictionary = source.
NameScopeDictionary
;