2 implementations of IXamlSchemaContextProvider
System.Xaml (2)
System\Xaml\Context\ServiceProviderContext.cs (1)
21IXamlSchemaContextProvider,
System\Xaml\XamlObjectReader.cs (1)
2793class TypeDescriptorAndValueSerializerContext : IValueSerializerContext, INamespacePrefixLookup, IXamlSchemaContextProvider, IXamlNameProvider
27 references to IXamlSchemaContextProvider
PresentationFramework (20)
MS\Internal\Helper.cs (3)
626System.Xaml.IXamlSchemaContextProvider scp = serviceProvider.GetService(typeof(System.Xaml.IXamlSchemaContextProvider)) as System.Xaml.IXamlSchemaContextProvider;
System\Windows\DeferrableContentConverter.cs (1)
50RequireService<IXamlSchemaContextProvider>(context).SchemaContext;
System\Windows\Markup\DependencyPropertyConverter.cs (7)
120Baml2006SchemaContext schemaContext = (serviceProvider.GetService(typeof(IXamlSchemaContextProvider)) 121as IXamlSchemaContextProvider).SchemaContext as Baml2006SchemaContext; 174XamlSchemaContext schemaContext = (serviceProvider.GetService(typeof(IXamlSchemaContextProvider)) 175as IXamlSchemaContextProvider).SchemaContext; 185IXamlSchemaContextProvider ixscp = (serviceProvider.GetService(typeof(IXamlSchemaContextProvider)) 186as IXamlSchemaContextProvider);
System\Windows\Markup\RoutedEventConverter.cs (3)
80IXamlSchemaContextProvider schemaContextProvider = (typeDescriptorContext. 81GetService(typeof(IXamlSchemaContextProvider)) 82as IXamlSchemaContextProvider);
System\Windows\Markup\SetterTriggerConditionValueConverter.cs (3)
104IXamlSchemaContextProvider ixsc = (serviceProvider.GetService(typeof(IXamlSchemaContextProvider)) 105as IXamlSchemaContextProvider);
System\Windows\StaticResourceExtension.cs (3)
204var schemaContextProvider = serviceProvider.GetService(typeof(IXamlSchemaContextProvider)) as IXamlSchemaContextProvider;
System.Xaml (7)
System\Xaml\Context\ServiceProviderContext.cs (2)
51else if (serviceType == typeof(IXamlSchemaContextProvider)) 222XamlSchemaContext 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)
2822if (serviceType == typeof(IXamlSchemaContextProvider)) { return this; }