3 writes to XamlTypeMapper
PresentationFramework (3)
System\Windows\Markup\BamlReader.cs (1)
159XamlTypeMapper = XmlParserDefaults.DefaultMapper
System\Windows\Markup\BamlRecordReader.cs (1)
125ParserContext.XamlTypeMapper = XamlTypeMapper;
System\Windows\Markup\BamlWriter.cs (1)
37_parserContext.XamlTypeMapper = new BamlWriterXamlTypeMapper(XmlParserDefaults.GetDefaultAssemblyNames(),
27 references to XamlTypeMapper
PresentationFramework (27)
System\Windows\Markup\BamlReader.cs (4)
1048string xmlns = _parserContext.XamlTypeMapper.GetXmlNamespace(declaringType.Namespace, 1896if (!_parserContext.XamlTypeMapper.PITable.Contains(piMappingRecord.XmlNamespace)) 1900_parserContext.XamlTypeMapper.AddMappingProcessingInstruction(piMappingRecord.XmlNamespace, 2662xmlns = _parserContext.XamlTypeMapper.GetXmlNamespace(
System\Windows\Markup\BamlRecordReader.cs (5)
92Debug.Assert(null != parserContext && null != parserContext.XamlTypeMapper); 117Debug.Assert(null != parserContext && null != parserContext.XamlTypeMapper); 4021o = ParserContext.XamlTypeMapper.ParseProperty(null, type,string.Empty, null, 5098attribInfo.EventInfo = ParserContext.XamlTypeMapper.GetClrEventInfo(currentParentType, attribInfo.Name); 5410get { return ParserContext.XamlTypeMapper; }
System\Windows\Markup\BamlRecordWriter.cs (1)
52_xamlTypeMapper = parserContext.XamlTypeMapper;
System\Windows\Markup\BamlWriter.cs (2)
35if (null == _parserContext.XamlTypeMapper) 40_xamlTypeMapper = _parserContext.XamlTypeMapper;
System\Windows\Markup\MarkupExtensionParser.cs (2)
1547Type typeValue = _parserContext.XamlTypeMapper.GetTypeFromBaseString(value, 1667MemberInfo mi = _parserContext.XamlTypeMapper.GetClrInfo(false,
System\Windows\Markup\ParserContext.cs (1)
154_xamlTypeMapper = parserContext.XamlTypeMapper;
System\Windows\Markup\ProvideValueServiceProvider.cs (1)
53return _context.XamlTypeMapper.GetTypeFromBaseString(qualifiedTypeName, _context, true);
System\Windows\Markup\XamlReader.cs (4)
348XamlSchemaContext schemaContext = parserContext.XamlTypeMapper != null ? 349parserContext.XamlTypeMapper.SchemaContext : GetWpfSchemaContext(); 894XamlSchemaContext schemaContext = parserContext.XamlTypeMapper != null ? 895parserContext.XamlTypeMapper.SchemaContext : GetWpfSchemaContext();
System\Windows\Markup\XamlStyleSerializer.cs (1)
111targetType = parserContext.XamlTypeMapper.GetDictionaryKey(propertyRecord.Value, parserContext);
System\Windows\Markup\XamlTemplateSerializer.cs (2)
115key = parserContext.XamlTypeMapper.GetDictionaryKey(propertyRecord.Value, parserContext); 119object dataType = parserContext.XamlTypeMapper.GetDictionaryKey(propertyRecord.Value, parserContext);
System\Windows\Markup\XamlTypeMapper.cs (3)
3042parserContext.XamlTypeMapper.ThrowException(nameof(SR.ParserPrefixNSProperty), nsPrefix, nameString); 3063DependencyProperty dp = parserContext.XamlTypeMapper.DependencyPropertyFromName( 3086RoutedEvent Event = parserContext.XamlTypeMapper.GetRoutedEvent(
System\Windows\PropertyPath.cs (1)
848TypeAndSerializer typeAndSerializer = parserContext.XamlTypeMapper.GetTypeOnly(namespaceURI, name);