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