2 implementations of SchemaContext
System.Xaml (2)
System\Xaml\Context\ServiceProviderContext.cs (1)
220XamlSchemaContext IXamlSchemaContextProvider.SchemaContext
System\Xaml\XamlObjectReader.cs (1)
2846public XamlSchemaContext SchemaContext { get { return context.SchemaContext; } }
12 references to SchemaContext
PresentationFramework (8)
MS\Internal\Helper.cs (1)
620System.Xaml.XamlSchemaContext sc = scp.SchemaContext;
System\Windows\DeferrableContentConverter.cs (1)
33RequireService<IXamlSchemaContextProvider>(context).SchemaContext;
System\Windows\Markup\DependencyPropertyConverter.cs (3)
112as IXamlSchemaContextProvider).SchemaContext as Baml2006SchemaContext; 166as IXamlSchemaContextProvider).SchemaContext; 182XamlSchemaContext schemaContext = ixscp.SchemaContext;
System\Windows\Markup\RoutedEventConverter.cs (1)
85XamlSchemaContext schemaContext = schemaContextProvider.SchemaContext;
System\Windows\Markup\SetterTriggerConditionValueConverter.cs (1)
100XamlSchemaContext schemaContext = ixsc.SchemaContext;
System\Windows\StaticResourceExtension.cs (1)
208XamlSchemaContext schemaContext = schemaContextProvider.SchemaContext;
System.Xaml (4)
System\Xaml\Replacements\TypeTypeConverter.cs (2)
60if (schemaContextProvider.SchemaContext is null) 65XamlType xamlType = schemaContextProvider.SchemaContext.GetXamlType(type);
System\Xaml\Schema\XamlTypeTypeConverter.cs (2)
80if (schemaContextProvider.SchemaContext is null) 84return GetXamlTypeOrUnknown(schemaContextProvider.SchemaContext, xamlTypeName);