16 instantiations of XamlSchemaContextSettings
PresentationFramework (3)
System\Windows\Markup\XamlReader.cs (3)
764XamlSchemaContextSettings xscSettings = new XamlSchemaContextSettings 1156XamlSchemaContextSettings settings = new XamlSchemaContextSettings 1165XamlSchemaContextSettings settings = new XamlSchemaContextSettings
System.Xaml (3)
System\Xaml\XamlLanguage.cs (1)
437new XamlSchemaContextSettings { SupportMarkupExtensionsWithDuplicateArity = true };
System\Xaml\XamlSchemaContext.cs (2)
62? new XamlSchemaContextSettings(settings) 63: new XamlSchemaContextSettings();
System.Xaml.Tests (10)
System\Xaml\XamlSchemaContextSettingsTests.cs (3)
15var settings = new XamlSchemaContextSettings(); 25new XamlSchemaContextSettings 37var newSettings = new XamlSchemaContextSettings(settings);
System\Xaml\XamlSchemaContextTests.cs (3)
32new XamlSchemaContextSettings 76new XamlSchemaContextSettings 815var settings = new XamlSchemaContextSettings
System\Xaml\XamlTypeTests.cs (4)
221new XamlType(typeof(int), new XamlSchemaContext(new XamlSchemaContextSettings 236new XamlType(typeof(GlobalNamespaceClass), new XamlSchemaContext(new XamlSchemaContextSettings 249new XamlType(typeof(XamlTypeTests), new XamlSchemaContext(new XamlSchemaContextSettings 3687var duplicateSupport = new XamlSchemaContextSettings { SupportMarkupExtensionsWithDuplicateArity = true };
20 references to XamlSchemaContextSettings
PresentationFramework (6)
System\Windows\Markup\Baml2006\WpfSharedBamlSchemaContext.cs (1)
43public WpfSharedBamlSchemaContext(XamlSchemaContextSettings settings)
System\Windows\Markup\Baml2006\WpfSharedXamlSchemaContext.cs (1)
14public WpfSharedXamlSchemaContext(XamlSchemaContextSettings settings, bool useV3Rules) : base(settings)
System\Windows\Markup\XamlReader.cs (4)
762internal static XamlSchemaContextSettings CreateSchemaContextSettings() 764XamlSchemaContextSettings xscSettings = new XamlSchemaContextSettings 1156XamlSchemaContextSettings settings = new XamlSchemaContextSettings 1165XamlSchemaContextSettings settings = new XamlSchemaContextSettings
System.Xaml (5)
System\Xaml\XamlLanguage.cs (1)
436XamlSchemaContextSettings settings =
System\Xaml\XamlSchemaContext.cs (3)
46public XamlSchemaContext(XamlSchemaContextSettings settings) 52public XamlSchemaContext(IEnumerable<Assembly> referenceAssemblies, XamlSchemaContextSettings settings) 685private readonly XamlSchemaContextSettings _settings;
System\Xaml\XamlSchemaContextSettings.cs (1)
18public XamlSchemaContextSettings(XamlSchemaContextSettings settings)
System.Xaml.Tests (9)
System\Xaml\XamlSchemaContextSettingsTests.cs (3)
15var settings = new XamlSchemaContextSettings(); 35public void Ctor_XamlSchemaContextSettings(XamlSchemaContextSettings settings) 37var newSettings = new XamlSchemaContextSettings(settings);
System\Xaml\XamlSchemaContextTests.cs (5)
42public void Ctor_XamlSchemaContextSettings(XamlSchemaContextSettings settings, bool expectdSupportMarkupExtensionsWithDuplicateArity, bool expectedFullyQualifyAssemblyNamesInClrNamespaces) 54yield return new object?[] { new Assembly?[] { typeof(XamlSchemaContextSettings).Assembly, typeof(int).Assembly, null } }; 80}, new Assembly?[] { typeof(XamlSchemaContextSettings).Assembly, typeof(int).Assembly, null }, true, true 87public void Ctor_XamlSchemaContextSettings_ReferenceAssemblies(XamlSchemaContextSettings settings, IEnumerable<Assembly> referenceAssemblies, bool expectdSupportMarkupExtensionsWithDuplicateArity, bool expectedFullyQualifyAssemblyNamesInClrNamespaces) 815var settings = new XamlSchemaContextSettings
System\Xaml\XamlTypeTests.cs (1)
3687var duplicateSupport = new XamlSchemaContextSettings { SupportMarkupExtensionsWithDuplicateArity = true };