2 implementations of IXamlSchemaContextProvider
System.Xaml (2)
System\Xaml\Context\ServiceProviderContext.cs (1)
19IXamlSchemaContextProvider,
System\Xaml\XamlObjectReader.cs (1)
2788class TypeDescriptorAndValueSerializerContext : IValueSerializerContext, INamespacePrefixLookup, IXamlSchemaContextProvider, IXamlNameProvider
27 references to IXamlSchemaContextProvider
PresentationFramework (20)
MS\Internal\Helper.cs (3)
617System.Xaml.IXamlSchemaContextProvider scp = serviceProvider.GetService(typeof(System.Xaml.IXamlSchemaContextProvider)) as System.Xaml.IXamlSchemaContextProvider;
System\Windows\DeferrableContentConverter.cs (1)
33RequireService<IXamlSchemaContextProvider>(context).SchemaContext;
System\Windows\Markup\DependencyPropertyConverter.cs (7)
111Baml2006SchemaContext schemaContext = (serviceProvider.GetService(typeof(IXamlSchemaContextProvider)) 112as IXamlSchemaContextProvider).SchemaContext as Baml2006SchemaContext; 165XamlSchemaContext schemaContext = (serviceProvider.GetService(typeof(IXamlSchemaContextProvider)) 166as IXamlSchemaContextProvider).SchemaContext; 176IXamlSchemaContextProvider ixscp = (serviceProvider.GetService(typeof(IXamlSchemaContextProvider)) 177as IXamlSchemaContextProvider);
System\Windows\Markup\RoutedEventConverter.cs (3)
77IXamlSchemaContextProvider schemaContextProvider = (typeDescriptorContext. 78GetService(typeof(IXamlSchemaContextProvider)) 79as IXamlSchemaContextProvider);
System\Windows\Markup\SetterTriggerConditionValueConverter.cs (3)
94IXamlSchemaContextProvider ixsc = (serviceProvider.GetService(typeof(IXamlSchemaContextProvider)) 95as IXamlSchemaContextProvider);
System\Windows\StaticResourceExtension.cs (3)
196var schemaContextProvider = serviceProvider.GetService(typeof(IXamlSchemaContextProvider)) as IXamlSchemaContextProvider;
System.Xaml (7)
System\Xaml\Context\ServiceProviderContext.cs (2)
49else if (serviceType == typeof(IXamlSchemaContextProvider)) 220XamlSchemaContext IXamlSchemaContextProvider.SchemaContext
System\Xaml\Replacements\TypeTypeConverter.cs (2)
55IXamlSchemaContextProvider schemaContextProvider = GetService<IXamlSchemaContextProvider>(context);
System\Xaml\Schema\XamlTypeTypeConverter.cs (2)
75var schemaContextProvider = GetService<IXamlSchemaContextProvider>(context);
System\Xaml\XamlObjectReader.cs (1)
2817if (serviceType == typeof(IXamlSchemaContextProvider)) { return this; }