3 writes to XamlTypeMapper
PresentationFramework (3)
System\Windows\Markup\BamlReader.cs (1)
159
XamlTypeMapper
= XmlParserDefaults.DefaultMapper
System\Windows\Markup\BamlRecordReader.cs (1)
125
ParserContext.
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)
1048
string xmlns = _parserContext.
XamlTypeMapper
.GetXmlNamespace(declaringType.Namespace,
1896
if (!_parserContext.
XamlTypeMapper
.PITable.Contains(piMappingRecord.XmlNamespace))
1900
_parserContext.
XamlTypeMapper
.AddMappingProcessingInstruction(piMappingRecord.XmlNamespace,
2662
xmlns = _parserContext.
XamlTypeMapper
.GetXmlNamespace(
System\Windows\Markup\BamlRecordReader.cs (5)
92
Debug.Assert(null != parserContext && null != parserContext.
XamlTypeMapper
);
117
Debug.Assert(null != parserContext && null != parserContext.
XamlTypeMapper
);
4021
o = ParserContext.
XamlTypeMapper
.ParseProperty(null, type,string.Empty, null,
5098
attribInfo.EventInfo = ParserContext.
XamlTypeMapper
.GetClrEventInfo(currentParentType, attribInfo.Name);
5410
get { return ParserContext.
XamlTypeMapper
; }
System\Windows\Markup\BamlRecordWriter.cs (1)
52
_xamlTypeMapper = parserContext.
XamlTypeMapper
;
System\Windows\Markup\BamlWriter.cs (2)
35
if (null == _parserContext.
XamlTypeMapper
)
40
_xamlTypeMapper = _parserContext.
XamlTypeMapper
;
System\Windows\Markup\MarkupExtensionParser.cs (2)
1547
Type typeValue = _parserContext.
XamlTypeMapper
.GetTypeFromBaseString(value,
1667
MemberInfo mi = _parserContext.
XamlTypeMapper
.GetClrInfo(false,
System\Windows\Markup\ParserContext.cs (1)
154
_xamlTypeMapper = parserContext.
XamlTypeMapper
;
System\Windows\Markup\ProvideValueServiceProvider.cs (1)
53
return _context.
XamlTypeMapper
.GetTypeFromBaseString(qualifiedTypeName, _context, true);
System\Windows\Markup\XamlReader.cs (4)
348
XamlSchemaContext schemaContext = parserContext.
XamlTypeMapper
!= null ?
349
parserContext.
XamlTypeMapper
.SchemaContext : GetWpfSchemaContext();
894
XamlSchemaContext schemaContext = parserContext.
XamlTypeMapper
!= null ?
895
parserContext.
XamlTypeMapper
.SchemaContext : GetWpfSchemaContext();
System\Windows\Markup\XamlStyleSerializer.cs (1)
111
targetType = parserContext.
XamlTypeMapper
.GetDictionaryKey(propertyRecord.Value, parserContext);
System\Windows\Markup\XamlTemplateSerializer.cs (2)
115
key = parserContext.
XamlTypeMapper
.GetDictionaryKey(propertyRecord.Value, parserContext);
119
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)
848
TypeAndSerializer typeAndSerializer = parserContext.
XamlTypeMapper
.GetTypeOnly(namespaceURI, name);