1 instantiation of WpfSharedXamlSchemaContext
PresentationFramework (1)
System\Windows\Markup\XamlReader.cs (1)
1153return 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)
1147private static WpfSharedXamlSchemaContext CreateXamlSchemaContext(bool useV3Rules) 1174private static readonly Lazy<WpfSharedXamlSchemaContext> _xamlSharedContext = 1175new Lazy<WpfSharedXamlSchemaContext>(() => CreateXamlSchemaContext(false)); 1176private static readonly Lazy<WpfSharedXamlSchemaContext> _xamlV3SharedContext = 1177new Lazy<WpfSharedXamlSchemaContext>(() => CreateXamlSchemaContext(true));
System\Windows\Markup\XamlTypeMapperSchemaContext.cs (3)
20private WpfSharedXamlSchemaContext _sharedSchemaContext; 33_sharedSchemaContext = (WpfSharedXamlSchemaContext)XamlReader.GetWpfSchemaContext(); 317WpfSharedXamlSchemaContext.RequireRuntimeType(type);