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