4 implementations of IXamlSchemaContextProvider
System.Xaml (2)
System\Xaml\Context\ServiceProviderContext.cs (1)
19IXamlSchemaContextProvider,
System\Xaml\XamlObjectReader.cs (1)
2810class TypeDescriptorAndValueSerializerContext : IValueSerializerContext, INamespacePrefixLookup, IXamlSchemaContextProvider, IXamlNameProvider
System.Xaml.Tests (2)
System\Xaml\Replacements\TypeTypeConverterTests.cs (1)
307private class CustomXamlSchemaContextProvider : IXamlSchemaContextProvider
System\Xaml\Schema\XamlTypeTypeConverterTests.cs (1)
337private class CustomXamlSchemaContextProvider : IXamlSchemaContextProvider
35 references to IXamlSchemaContextProvider
PresentationFramework (20)
MS\Internal\Helper.cs (3)
614System.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)
2839if (serviceType == typeof(IXamlSchemaContextProvider)) { return this; }
System.Xaml.Tests (8)
System\Xaml\Replacements\TypeTypeConverterTests.cs (5)
108if (serviceType == typeof(IXamlSchemaContextProvider)) 144if (serviceType == typeof(IXamlSchemaContextProvider)) 183Assert.Equal(typeof(IXamlSchemaContextProvider), serviceType); 213Assert.Equal(typeof(IXamlSchemaContextProvider), serviceType); 231if (serviceType == typeof(IXamlSchemaContextProvider))
System\Xaml\Schema\XamlTypeTypeConverterTests.cs (3)
71else if (serviceType == typeof(IXamlSchemaContextProvider)) 104else if (serviceType == typeof(IXamlSchemaContextProvider)) 162else if (serviceType == typeof(IXamlSchemaContextProvider))