3 implementations of ILocalizabilityInheritable
PresentationFramework (3)
src\Framework\MS\Internal\Globalization\BamlTreeNode.cs (3)
379internal sealed class BamlStartDocumentNode : BamlTreeNode, ILocalizabilityInheritable 461internal sealed class BamlStartElementNode : BamlTreeNode, ILocalizabilityInheritable 649internal class BamlStartComplexPropertyNode : BamlTreeNode, ILocalizabilityInheritable
22 references to ILocalizabilityInheritable
PresentationFramework (22)
src\Framework\MS\Internal\Globalization\BamlResourceDeserializer.cs (10)
103PushPropertyToStack(bamlNode.PropertyName, (ILocalizabilityInheritable) bamlNode); 214PushPropertyToStack(bamlNode.PropertyName, (ILocalizabilityInheritable) bamlNode); 358private void PushPropertyToStack(string propertyName, ILocalizabilityInheritable node) 360Stack<ILocalizabilityInheritable> stackForProperty; 368stackForProperty = new Stack<ILocalizabilityInheritable>(); 378Stack<ILocalizabilityInheritable> stackForProperty = _propertyInheritanceTreeStack[propertyName]; 383private ILocalizabilityInheritable PeekPropertyStack(string propertyName) 387Stack<ILocalizabilityInheritable> stackForProperty = _propertyInheritanceTreeStack[propertyName]; 406private Dictionary<string, Stack<ILocalizabilityInheritable>> _propertyInheritanceTreeStack 407= new Dictionary<string, Stack<ILocalizabilityInheritable>>(8);
src\Framework\MS\Internal\Globalization\BamlTreeNode.cs (7)
155ILocalizabilityInheritable LocalizabilityAncestor {get;} 392public ILocalizabilityInheritable LocalizabilityAncestor 546public ILocalizabilityInheritable LocalizabilityAncestor 558_localizabilityAncestor = (parentNode as ILocalizabilityInheritable); 590private ILocalizabilityInheritable _localizabilityAncestor; 695public ILocalizabilityInheritable LocalizabilityAncestor 721private ILocalizabilityInheritable _localizabilityAncestor;
src\Framework\MS\Internal\Globalization\LocalizableResourceBuilder.cs (5)
103node as ILocalizabilityInheritable, 397ILocalizabilityInheritable node, 428ILocalizabilityInheritable ancestor = node.LocalizabilityAncestor; 495ILocalizabilityInheritable parent = (ILocalizabilityInheritable) treeNode.Parent;