1 instantiation of SpecialBracketCharacters
PresentationFramework (1)
System\Windows\Markup\ParserContext.cs (1)
873bracketCharacters = new SpecialBracketCharacters();
14 references to SpecialBracketCharacters
PresentationFramework (14)
System\Windows\Markup\MarkupExtensionParser.cs (5)
926Dictionary<string, SpecialBracketCharacters> bracketCharacterCache = _parserContext.InitBracketCharacterCacheForType(extensionType); 943SpecialBracketCharacters bracketCharacters = null; 1476private SpecialBracketCharacters GetBracketCharacterForProperty(string propertyName, Dictionary<string, SpecialBracketCharacters> bracketCharacterCache) 1478SpecialBracketCharacters bracketCharacters = null;
System\Windows\Markup\ParserContext.cs (9)
195internal Dictionary<string, SpecialBracketCharacters> InitBracketCharacterCacheForType(Type type) 199Dictionary<string, SpecialBracketCharacters> map = BuildBracketCharacterCacheForType(type); 696internal Dictionary<Type, Dictionary<string, SpecialBracketCharacters>> MasterBracketCharacterCache 702_masterBracketCharacterCache = new Dictionary<Type, Dictionary<string, SpecialBracketCharacters>>(); 821private Dictionary<Type, Dictionary<string, SpecialBracketCharacters>> _masterBracketCharacterCache; 840private Dictionary<string, SpecialBracketCharacters> BuildBracketCharacterCacheForType(Type extensionType) 842Dictionary<string, SpecialBracketCharacters> cache = new Dictionary<string, SpecialBracketCharacters>(StringComparer.OrdinalIgnoreCase); 852SpecialBracketCharacters bracketCharacters = null;