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