12 references to PITable
PresentationFramework (12)
System\Windows\Markup\BamlReader.cs (1)
1890
if (!_parserContext.XamlTypeMapper.
PITable
.Contains(piMappingRecord.XmlNamespace))
System\Windows\Markup\BamlRecordReader.cs (2)
592
if (!XamlTypeMapper.
PITable
.Contains(piMappingRecord.XmlNamespace))
599
XamlTypeMapper.
PITable
.Add(piMappingRecord.XmlNamespace, mapping);
System\Windows\Markup\BamlWriter.cs (2)
850
if (!_xamlTypeMapper.
PITable
.Contains(xmlNamespace))
853
_xamlTypeMapper.
PITable
.Add(xmlNamespace, mapping);
System\Windows\Markup\XamlTypeMapper.cs (3)
163
PITable
[xmlNamespace] = pair;
3257
if (
PITable
.Contains(xmlNamespace))
3260
namespaceAssemblyPair.Add((ClrNamespaceAssemblyPair)
PITable
[xmlNamespace]);
System\Windows\Markup\XamlTypeMapperSchemaContext.cs (4)
57
if (typeMapper.
PITable
.Count > 0)
59
_piNamespaces = new Dictionary<string, string>(typeMapper.
PITable
.Count);
60
foreach (DictionaryEntry entry in typeMapper.
PITable
)
148
foreach (DictionaryEntry piEntry in _typeMapper.
PITable
)