10 writes to NameScopeDictionary
System.Xaml (10)
System\Xaml\Context\ObjectWriterContext.cs (8)
68
_stack.CurrentFrame.
NameScopeDictionary
= rootNameScopeDictionary;
100
_stack.CurrentFrame.
NameScopeDictionary
= rootNameScopeDictionary;
796
frame.
NameScopeDictionary
= frame.Instance as XAML3.INameScopeDictionary ?? new NameScopeDictionary(frame.Instance as XAML3.INameScope);
802
frame.
NameScopeDictionary
= HuntAroundForARootNameScope(frame);
809
frame.
NameScopeDictionary
= new NameScope();
814
frame.
NameScopeDictionary
= LookupNameScopeDictionary(parentFrame);
932
rootFrame.
NameScopeDictionary
= nameScopeDictionary;
942
topFrame.
NameScopeDictionary
= LookupNameScopeDictionary(topFrame);
System\Xaml\Context\ObjectWriterFrame.cs (2)
47
NameScopeDictionary
= source.NameScopeDictionary;
59
NameScopeDictionary
= null;
11 references to NameScopeDictionary
System.Xaml (11)
System\Xaml\Context\ObjectWriterContext.cs (10)
792
if (frame.
NameScopeDictionary
== null)
798
if (frame.
NameScopeDictionary
== null)
820
Debug.Assert(frame.
NameScopeDictionary
!= null || frame.Depth == 0);
821
return frame.
NameScopeDictionary
;
835
if (frame.
NameScopeDictionary
!= previousNameScopeDictionary)
843
if (frame.
NameScopeDictionary
!= null && frame.
NameScopeDictionary
!= previousNameScopeDictionary)
845
yield return frame.
NameScopeDictionary
;
922
nameScopeDictionary = frameZero.
NameScopeDictionary
;
940
if (topFrame.
NameScopeDictionary
== null)
System\Xaml\Context\ObjectWriterFrame.cs (1)
47
NameScopeDictionary = source.
NameScopeDictionary
;