1 instantiation of WpfSharedXamlSchemaContext
PresentationFramework (1)
System\Windows\Markup\XamlReader.cs (1)
1162return new WpfSharedXamlSchemaContext(settings, useV3Rules);
9 references to WpfSharedXamlSchemaContext
PresentationFramework (9)
System\Windows\Markup\Baml2006\WpfSharedBamlSchemaContext.cs (1)
196WpfSharedXamlSchemaContext.RequireRuntimeType(type);
System\Windows\Markup\XamlReader.cs (5)
1156private static WpfSharedXamlSchemaContext CreateXamlSchemaContext(bool useV3Rules) 1183private static readonly Lazy<WpfSharedXamlSchemaContext> _xamlSharedContext = 1184new Lazy<WpfSharedXamlSchemaContext>(() => CreateXamlSchemaContext(false)); 1185private static readonly Lazy<WpfSharedXamlSchemaContext> _xamlV3SharedContext = 1186new Lazy<WpfSharedXamlSchemaContext>(() => CreateXamlSchemaContext(true));
System\Windows\Markup\XamlTypeMapperSchemaContext.cs (3)
20private WpfSharedXamlSchemaContext _sharedSchemaContext; 33_sharedSchemaContext = (WpfSharedXamlSchemaContext)XamlReader.GetWpfSchemaContext(); 317WpfSharedXamlSchemaContext.RequireRuntimeType(type);