10 writes to NameScopeDictionary
System.Xaml (10)
System\Xaml\Context\ObjectWriterContext.cs (8)
66
_stack.CurrentFrame.
NameScopeDictionary
= rootNameScopeDictionary;
99
_stack.CurrentFrame.
NameScopeDictionary
= rootNameScopeDictionary;
804
frame.
NameScopeDictionary
= frame.Instance as XAML3.INameScopeDictionary ?? new NameScopeDictionary(frame.Instance as XAML3.INameScope);
811
frame.
NameScopeDictionary
= HuntAroundForARootNameScope(frame);
818
frame.
NameScopeDictionary
= new NameScope();
823
frame.
NameScopeDictionary
= LookupNameScopeDictionary(parentFrame);
945
rootFrame.
NameScopeDictionary
= nameScopeDictionary;
955
topFrame.
NameScopeDictionary
= LookupNameScopeDictionary(topFrame);
System\Xaml\Context\ObjectWriterFrame.cs (2)
44
NameScopeDictionary
= source.NameScopeDictionary;
56
NameScopeDictionary
= null;
11 references to NameScopeDictionary
System.Xaml (11)
System\Xaml\Context\ObjectWriterContext.cs (10)
800
if (frame.
NameScopeDictionary
is null)
807
if (frame.
NameScopeDictionary
is null)
830
Debug.Assert(frame.
NameScopeDictionary
is not null || frame.Depth == 0);
831
return frame.
NameScopeDictionary
;
845
if (frame.
NameScopeDictionary
!= previousNameScopeDictionary)
855
if (frame.
NameScopeDictionary
is not null && frame.
NameScopeDictionary
!= previousNameScopeDictionary)
857
yield return frame.
NameScopeDictionary
;
935
nameScopeDictionary = frameZero.
NameScopeDictionary
;
953
if (topFrame.
NameScopeDictionary
is null)
System\Xaml\Context\ObjectWriterFrame.cs (1)
44
NameScopeDictionary = source.
NameScopeDictionary
;