3 writes to XamlTypeMapper
PresentationFramework (3)
System\Windows\Markup\BamlReader.cs (1)
160XamlTypeMapper = XmlParserDefaults.DefaultMapper
System\Windows\Markup\BamlRecordReader.cs (1)
126ParserContext.XamlTypeMapper = XamlTypeMapper;
System\Windows\Markup\BamlWriter.cs (1)
38_parserContext.XamlTypeMapper = new BamlWriterXamlTypeMapper(XmlParserDefaults.GetDefaultAssemblyNames(),
27 references to XamlTypeMapper
PresentationFramework (27)
System\Windows\Markup\BamlReader.cs (4)
1049string xmlns = _parserContext.XamlTypeMapper.GetXmlNamespace(declaringType.Namespace, 1900if (!_parserContext.XamlTypeMapper.PITable.Contains(piMappingRecord.XmlNamespace)) 1904_parserContext.XamlTypeMapper.AddMappingProcessingInstruction(piMappingRecord.XmlNamespace, 2666xmlns = _parserContext.XamlTypeMapper.GetXmlNamespace(
System\Windows\Markup\BamlRecordReader.cs (5)
93Debug.Assert(null != parserContext && null != parserContext.XamlTypeMapper); 118Debug.Assert(null != parserContext && null != parserContext.XamlTypeMapper); 4028o = ParserContext.XamlTypeMapper.ParseProperty(null, type,string.Empty, null, 5108attribInfo.EventInfo = ParserContext.XamlTypeMapper.GetClrEventInfo(currentParentType, attribInfo.Name); 5423get { return ParserContext.XamlTypeMapper; }
System\Windows\Markup\BamlRecordWriter.cs (1)
53_xamlTypeMapper = parserContext.XamlTypeMapper;
System\Windows\Markup\BamlWriter.cs (2)
36if (null == _parserContext.XamlTypeMapper) 41_xamlTypeMapper = _parserContext.XamlTypeMapper;
System\Windows\Markup\MarkupExtensionParser.cs (2)
1545Type typeValue = _parserContext.XamlTypeMapper.GetTypeFromBaseString(value, 1665MemberInfo mi = _parserContext.XamlTypeMapper.GetClrInfo(false,
System\Windows\Markup\ParserContext.cs (1)
155_xamlTypeMapper = parserContext.XamlTypeMapper;
System\Windows\Markup\ProvideValueServiceProvider.cs (1)
54return _context.XamlTypeMapper.GetTypeFromBaseString(qualifiedTypeName, _context, true);
System\Windows\Markup\XamlReader.cs (4)
349XamlSchemaContext schemaContext = parserContext.XamlTypeMapper != null ? 350parserContext.XamlTypeMapper.SchemaContext : GetWpfSchemaContext(); 898XamlSchemaContext schemaContext = parserContext.XamlTypeMapper != null ? 899parserContext.XamlTypeMapper.SchemaContext : GetWpfSchemaContext();
System\Windows\Markup\XamlStyleSerializer.cs (1)
112targetType = parserContext.XamlTypeMapper.GetDictionaryKey(propertyRecord.Value, parserContext);
System\Windows\Markup\XamlTemplateSerializer.cs (2)
116key = parserContext.XamlTypeMapper.GetDictionaryKey(propertyRecord.Value, parserContext); 120object 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)
849TypeAndSerializer typeAndSerializer = parserContext.XamlTypeMapper.GetTypeOnly(namespaceURI, name);