3 writes to XamlTypeMapper
PresentationFramework (3)
src\Framework\System\Windows\Markup\BamlReader.cs (1)
178_parserContext.XamlTypeMapper = XmlParserDefaults.DefaultMapper;
src\Framework\System\Windows\Markup\BamlRecordReader.cs (1)
150ParserContext.XamlTypeMapper = XamlTypeMapper;
src\Framework\System\Windows\Markup\BamlWriter.cs (1)
64_parserContext.XamlTypeMapper = new BamlWriterXamlTypeMapper(XmlParserDefaults.GetDefaultAssemblyNames(),
27 references to XamlTypeMapper
PresentationFramework (27)
src\Framework\System\Windows\Markup\BamlReader.cs (4)
1067string xmlns = _parserContext.XamlTypeMapper.GetXmlNamespace(declaringType.Namespace, 1903if (!_parserContext.XamlTypeMapper.PITable.Contains(piMappingRecord.XmlNamespace)) 1907_parserContext.XamlTypeMapper.AddMappingProcessingInstruction(piMappingRecord.XmlNamespace, 2674xmlns = _parserContext.XamlTypeMapper.GetXmlNamespace(
src\Framework\System\Windows\Markup\BamlRecordReader.cs (5)
117Debug.Assert(null != parserContext && null != parserContext.XamlTypeMapper); 142Debug.Assert(null != parserContext && null != parserContext.XamlTypeMapper); 4081o = ParserContext.XamlTypeMapper.ParseProperty(null, type,string.Empty, null, 5179attribInfo.EventInfo = ParserContext.XamlTypeMapper.GetClrEventInfo(currentParentType, attribInfo.Name); 5497get { return ParserContext.XamlTypeMapper; }
src\Framework\System\Windows\Markup\BamlRecordWriter.cs (1)
62_xamlTypeMapper = parserContext.XamlTypeMapper;
src\Framework\System\Windows\Markup\BamlWriter.cs (2)
62if (null == _parserContext.XamlTypeMapper) 67_xamlTypeMapper = _parserContext.XamlTypeMapper;
src\Framework\System\Windows\Markup\MarkupExtensionParser.cs (2)
1569Type typeValue = _parserContext.XamlTypeMapper.GetTypeFromBaseString(value, 1689MemberInfo mi = _parserContext.XamlTypeMapper.GetClrInfo(false,
src\Framework\System\Windows\Markup\ParserContext.cs (1)
168_xamlTypeMapper = parserContext.XamlTypeMapper;
src\Framework\System\Windows\Markup\ProvideValueServiceProvider.cs (1)
56return _context.XamlTypeMapper.GetTypeFromBaseString(qualifiedTypeName, _context, true);
src\Framework\System\Windows\Markup\XamlReader.cs (4)
263XamlSchemaContext schemaContext = parserContext.XamlTypeMapper != null ? 264parserContext.XamlTypeMapper.SchemaContext : GetWpfSchemaContext(); 822XamlSchemaContext schemaContext = parserContext.XamlTypeMapper != null ? 823parserContext.XamlTypeMapper.SchemaContext : GetWpfSchemaContext();
src\Framework\System\Windows\Markup\XamlStyleSerializer.cs (1)
125targetType = parserContext.XamlTypeMapper.GetDictionaryKey(propertyRecord.Value, parserContext);
src\Framework\System\Windows\Markup\XamlTemplateSerializer.cs (2)
130key = parserContext.XamlTypeMapper.GetDictionaryKey(propertyRecord.Value, parserContext); 134object dataType = parserContext.XamlTypeMapper.GetDictionaryKey(propertyRecord.Value, parserContext);
src\Framework\System\Windows\Markup\XamlTypeMapper.cs (3)
3265parserContext.XamlTypeMapper.ThrowException(SRID.ParserPrefixNSProperty, nsPrefix, nameString); 3286DependencyProperty dp = parserContext.XamlTypeMapper.DependencyPropertyFromName( 3309RoutedEvent Event = parserContext.XamlTypeMapper.GetRoutedEvent(
src\Framework\System\Windows\PropertyPath.cs (1)
863TypeAndSerializer typeAndSerializer = parserContext.XamlTypeMapper.GetTypeOnly(namespaceURI, name);