4 implementations of IXamlSchemaContextProvider
System.Xaml (2)
System\Xaml\Context\ServiceProviderContext.cs (1)
18IXamlSchemaContextProvider,
System\Xaml\XamlObjectReader.cs (1)
2809private class 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)
613System.Xaml.IXamlSchemaContextProvider scp = serviceProvider.GetService(typeof(System.Xaml.IXamlSchemaContextProvider)) as System.Xaml.IXamlSchemaContextProvider;
System\Windows\DeferrableContentConverter.cs (1)
32RequireService<IXamlSchemaContextProvider>(context).SchemaContext;
System\Windows\Markup\DependencyPropertyConverter.cs (7)
110Baml2006SchemaContext schemaContext = (serviceProvider.GetService(typeof(IXamlSchemaContextProvider)) 111as IXamlSchemaContextProvider).SchemaContext as Baml2006SchemaContext; 164XamlSchemaContext schemaContext = (serviceProvider.GetService(typeof(IXamlSchemaContextProvider)) 165as IXamlSchemaContextProvider).SchemaContext; 175IXamlSchemaContextProvider ixscp = (serviceProvider.GetService(typeof(IXamlSchemaContextProvider)) 176as IXamlSchemaContextProvider);
System\Windows\Markup\RoutedEventConverter.cs (3)
76IXamlSchemaContextProvider schemaContextProvider = (typeDescriptorContext. 77GetService(typeof(IXamlSchemaContextProvider)) 78as IXamlSchemaContextProvider);
System\Windows\Markup\SetterTriggerConditionValueConverter.cs (3)
93IXamlSchemaContextProvider ixsc = (serviceProvider.GetService(typeof(IXamlSchemaContextProvider)) 94as IXamlSchemaContextProvider);
System\Windows\StaticResourceExtension.cs (3)
195var schemaContextProvider = serviceProvider.GetService(typeof(IXamlSchemaContextProvider)) as IXamlSchemaContextProvider;
System.Xaml (7)
System\Xaml\Context\ServiceProviderContext.cs (2)
48else if (serviceType == typeof(IXamlSchemaContextProvider)) 219XamlSchemaContext IXamlSchemaContextProvider.SchemaContext
System\Xaml\Replacements\TypeTypeConverter.cs (2)
54IXamlSchemaContextProvider schemaContextProvider = GetService<IXamlSchemaContextProvider>(context);
System\Xaml\Schema\XamlTypeTypeConverter.cs (2)
74var schemaContextProvider = GetService<IXamlSchemaContextProvider>(context);
System\Xaml\XamlObjectReader.cs (1)
2838if (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))