1 instantiation of WpfSharedXamlSchemaContext
PresentationFramework (1)
src\Framework\System\Windows\Markup\XamlReader.cs (1)
1110return new WpfSharedXamlSchemaContext(settings, useV3Rules);
9 references to WpfSharedXamlSchemaContext
PresentationFramework (9)
src\Framework\System\Windows\Markup\Baml2006\WpfSharedBamlSchemaContext.cs (1)
207WpfSharedXamlSchemaContext.RequireRuntimeType(type);
src\Framework\System\Windows\Markup\XamlReader.cs (5)
1106private static WpfSharedXamlSchemaContext CreateXamlSchemaContext(bool useV3Rules) 1131private static readonly Lazy<WpfSharedXamlSchemaContext> _xamlSharedContext = 1132new Lazy<WpfSharedXamlSchemaContext>(() => CreateXamlSchemaContext(false)); 1133private static readonly Lazy<WpfSharedXamlSchemaContext> _xamlV3SharedContext = 1134new Lazy<WpfSharedXamlSchemaContext>(() => CreateXamlSchemaContext(true));
src\Framework\System\Windows\Markup\XamlTypeMapperSchemaContext.cs (3)
20WpfSharedXamlSchemaContext _sharedSchemaContext; 33_sharedSchemaContext = (WpfSharedXamlSchemaContext)XamlReader.GetWpfSchemaContext(); 317WpfSharedXamlSchemaContext.RequireRuntimeType(type);