4 implementations of SchemaContext
System.Xaml (2)
System\Xaml\Context\ServiceProviderContext.cs (1)
219XamlSchemaContext IXamlSchemaContextProvider.SchemaContext
System\Xaml\XamlObjectReader.cs (1)
2867public XamlSchemaContext SchemaContext { get { return context.SchemaContext; } }
System.Xaml.Tests (2)
System\Xaml\Replacements\TypeTypeConverterTests.cs (1)
311public XamlSchemaContext? SchemaContext => SchemaContextResult;
System\Xaml\Schema\XamlTypeTypeConverterTests.cs (1)
341public XamlSchemaContext? SchemaContext => SchemaContextResult;
12 references to SchemaContext
PresentationFramework (8)
MS\Internal\Helper.cs (1)
616System.Xaml.XamlSchemaContext sc = scp.SchemaContext;
System\Windows\DeferrableContentConverter.cs (1)
32RequireService<IXamlSchemaContextProvider>(context).SchemaContext;
System\Windows\Markup\DependencyPropertyConverter.cs (3)
111as IXamlSchemaContextProvider).SchemaContext as Baml2006SchemaContext; 165as IXamlSchemaContextProvider).SchemaContext; 181XamlSchemaContext schemaContext = ixscp.SchemaContext;
System\Windows\Markup\RoutedEventConverter.cs (1)
84XamlSchemaContext schemaContext = schemaContextProvider.SchemaContext;
System\Windows\Markup\SetterTriggerConditionValueConverter.cs (1)
99XamlSchemaContext schemaContext = ixsc.SchemaContext;
System\Windows\StaticResourceExtension.cs (1)
207XamlSchemaContext 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) 85return GetXamlTypeOrUnknown(schemaContextProvider.SchemaContext, xamlTypeName);