15 references to SerializerType
PresentationBuildTasks (15)
MS\Internal\MarkupCompiler\ParserExtension.cs (5)
59if (xamlObjectNode.SerializerType != null) 62if (xamlObjectNode.SerializerType == typeof(XamlStyleSerializer)) 66else if (xamlObjectNode.SerializerType == typeof(XamlTemplateSerializer)) 73xamlObjectNode.SerializerType, 107xamlObjectNode.SerializerType);
src\Microsoft.DotNet.Wpf\src\PresentationFramework\System\Windows\Markup\BamlRecordWriter.cs (4)
267if (xamlElementNode.SerializerType != null) 269serializerAssemblyName = xamlElementNode.SerializerType.Assembly.FullName; 812if (xamlKeyElementNode.SerializerType != null) 814serializerAssemblyName = xamlKeyElementNode.SerializerType.Assembly.FullName;
src\Microsoft.DotNet.Wpf\src\PresentationFramework\System\Windows\Markup\StyleXamlParser.cs (4)
718if (xamlElementStartNode.SerializerType != null && depth > 0) 721if (xamlElementStartNode.SerializerType == typeof(XamlStyleSerializer)) 730else if (xamlElementStartNode.SerializerType == typeof(XamlTemplateSerializer)) 741serializer = XamlTypeMapper.CreateInstance(xamlElementStartNode.SerializerType) as XamlSerializer;
src\Microsoft.DotNet.Wpf\src\PresentationFramework\System\Windows\Markup\TemplateXamlParser.cs (2)
742if (xamlElementStartNode.SerializerType != null && _styleModeStack.Depth > 0) 744if (XamlTypeMapper.CreateInstance(xamlElementStartNode.SerializerType) is not XamlSerializer serializer)