12 references to PITable
PresentationFramework (12)
System\Windows\Markup\BamlReader.cs (1)
1896
if (!_parserContext.XamlTypeMapper.
PITable
.Contains(piMappingRecord.XmlNamespace))
System\Windows\Markup\BamlRecordReader.cs (2)
573
if (!XamlTypeMapper.
PITable
.Contains(piMappingRecord.XmlNamespace))
580
XamlTypeMapper.
PITable
.Add(piMappingRecord.XmlNamespace, mapping);
System\Windows\Markup\BamlWriter.cs (2)
837
if (!_xamlTypeMapper.
PITable
.Contains(xmlNamespace))
840
_xamlTypeMapper.
PITable
.Add(xmlNamespace, mapping);
System\Windows\Markup\XamlTypeMapper.cs (3)
154
PITable
[xmlNamespace] = pair;
3254
if (
PITable
.Contains(xmlNamespace))
3257
namespaceAssemblyPair.Add((ClrNamespaceAssemblyPair)
PITable
[xmlNamespace]);
System\Windows\Markup\XamlTypeMapperSchemaContext.cs (4)
53
if (typeMapper.
PITable
.Count > 0)
55
_piNamespaces = new Dictionary<string, string>(typeMapper.
PITable
.Count);
56
foreach (DictionaryEntry entry in typeMapper.
PITable
)
144
foreach (DictionaryEntry piEntry in _typeMapper.
PITable
)