3 writes to XamlTypeMapper
PresentationFramework (3)
System\Windows\Markup\BamlReader.cs (1)
169_parserContext.XamlTypeMapper = XmlParserDefaults.DefaultMapper;
System\Windows\Markup\BamlRecordReader.cs (1)
141ParserContext.XamlTypeMapper = XamlTypeMapper;
System\Windows\Markup\BamlWriter.cs (1)
52_parserContext.XamlTypeMapper = new BamlWriterXamlTypeMapper(XmlParserDefaults.GetDefaultAssemblyNames(),
27 references to XamlTypeMapper
PresentationFramework (27)
System\Windows\Markup\BamlReader.cs (4)
1055string xmlns = _parserContext.XamlTypeMapper.GetXmlNamespace(declaringType.Namespace, 1890if (!_parserContext.XamlTypeMapper.PITable.Contains(piMappingRecord.XmlNamespace)) 1894_parserContext.XamlTypeMapper.AddMappingProcessingInstruction(piMappingRecord.XmlNamespace, 2650xmlns = _parserContext.XamlTypeMapper.GetXmlNamespace(
System\Windows\Markup\BamlRecordReader.cs (5)
108Debug.Assert(null != parserContext && null != parserContext.XamlTypeMapper); 133Debug.Assert(null != parserContext && null != parserContext.XamlTypeMapper); 4040o = ParserContext.XamlTypeMapper.ParseProperty(null, type,string.Empty, null, 5120attribInfo.EventInfo = ParserContext.XamlTypeMapper.GetClrEventInfo(currentParentType, attribInfo.Name); 5435get { return ParserContext.XamlTypeMapper; }
System\Windows\Markup\BamlRecordWriter.cs (1)
56_xamlTypeMapper = parserContext.XamlTypeMapper;
System\Windows\Markup\BamlWriter.cs (2)
50if (null == _parserContext.XamlTypeMapper) 55_xamlTypeMapper = _parserContext.XamlTypeMapper;
System\Windows\Markup\MarkupExtensionParser.cs (2)
1552Type typeValue = _parserContext.XamlTypeMapper.GetTypeFromBaseString(value, 1672MemberInfo mi = _parserContext.XamlTypeMapper.GetClrInfo(false,
System\Windows\Markup\ParserContext.cs (1)
158_xamlTypeMapper = parserContext.XamlTypeMapper;
System\Windows\Markup\ProvideValueServiceProvider.cs (1)
57return _context.XamlTypeMapper.GetTypeFromBaseString(qualifiedTypeName, _context, true);
System\Windows\Markup\XamlReader.cs (4)
358XamlSchemaContext schemaContext = parserContext.XamlTypeMapper != null ? 359parserContext.XamlTypeMapper.SchemaContext : GetWpfSchemaContext(); 900XamlSchemaContext schemaContext = parserContext.XamlTypeMapper != null ? 901parserContext.XamlTypeMapper.SchemaContext : GetWpfSchemaContext();
System\Windows\Markup\XamlStyleSerializer.cs (1)
121targetType = parserContext.XamlTypeMapper.GetDictionaryKey(propertyRecord.Value, parserContext);
System\Windows\Markup\XamlTemplateSerializer.cs (2)
125key = parserContext.XamlTypeMapper.GetDictionaryKey(propertyRecord.Value, parserContext); 129object dataType = parserContext.XamlTypeMapper.GetDictionaryKey(propertyRecord.Value, parserContext);
System\Windows\Markup\XamlTypeMapper.cs (3)
3053parserContext.XamlTypeMapper.ThrowException(nameof(SR.ParserPrefixNSProperty), nsPrefix, nameString); 3074DependencyProperty dp = parserContext.XamlTypeMapper.DependencyPropertyFromName( 3097RoutedEvent Event = parserContext.XamlTypeMapper.GetRoutedEvent(
System\Windows\PropertyPath.cs (1)
863TypeAndSerializer typeAndSerializer = parserContext.XamlTypeMapper.GetTypeOnly(namespaceURI, name);