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