12 references to PITable
PresentationFramework (12)
System\Windows\Markup\BamlReader.cs (1)
1880
if (!_parserContext.XamlTypeMapper.
PITable
.Contains(piMappingRecord.XmlNamespace))
System\Windows\Markup\BamlRecordReader.cs (2)
583
if (!XamlTypeMapper.
PITable
.Contains(piMappingRecord.XmlNamespace))
590
XamlTypeMapper.
PITable
.Add(piMappingRecord.XmlNamespace, mapping);
System\Windows\Markup\BamlWriter.cs (2)
836
if (!_xamlTypeMapper.
PITable
.Contains(xmlNamespace))
839
_xamlTypeMapper.
PITable
.Add(xmlNamespace, mapping);
System\Windows\Markup\XamlTypeMapper.cs (3)
161
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
)