12 references to PITable
PresentationFramework (12)
System\Windows\Markup\BamlReader.cs (1)
1897
if (!_parserContext.XamlTypeMapper.
PITable
.Contains(piMappingRecord.XmlNamespace))
System\Windows\Markup\BamlRecordReader.cs (2)
574
if (!XamlTypeMapper.
PITable
.Contains(piMappingRecord.XmlNamespace))
581
XamlTypeMapper.
PITable
.Add(piMappingRecord.XmlNamespace, mapping);
System\Windows\Markup\BamlWriter.cs (2)
838
if (!_xamlTypeMapper.
PITable
.Contains(xmlNamespace))
841
_xamlTypeMapper.
PITable
.Add(xmlNamespace, mapping);
System\Windows\Markup\XamlTypeMapper.cs (3)
155
PITable
[xmlNamespace] = pair;
3255
if (
PITable
.Contains(xmlNamespace))
3258
namespaceAssemblyPair.Add((ClrNamespaceAssemblyPair)
PITable
[xmlNamespace]);
System\Windows\Markup\XamlTypeMapperSchemaContext.cs (4)
54
if (typeMapper.
PITable
.Count > 0)
56
_piNamespaces = new Dictionary<string, string>(typeMapper.
PITable
.Count);
57
foreach (DictionaryEntry entry in typeMapper.
PITable
)
145
foreach (DictionaryEntry piEntry in _typeMapper.
PITable
)