3 writes to GetXamlNamespacesResult
System.Xaml.Tests (3)
System\Xaml\XamlMemberTests.cs (3)
369var member = new CustomXamlMember(typeof(DataClass).GetProperty(nameof(DataClass.Property))!, new XamlSchemaContext()) { GetXamlNamespacesResult = new string[] { "namespace1", "namespace2" } }; 376var member = new CustomXamlMember(typeof(DataClass).GetProperty(nameof(DataClass.Property))!, new XamlSchemaContext()) { GetXamlNamespacesResult = Array.Empty<string>() }; 383var member = new CustomXamlMember(typeof(DataClass).GetProperty(nameof(DataClass.Property))!, new XamlSchemaContext()) { GetXamlNamespacesResult = null };
1 reference to GetXamlNamespacesResult
System.Xaml.Tests (1)
System\Xaml\XamlMemberTests.Mocks.cs (1)
212return GetXamlNamespacesResult.Or(base.GetXamlNamespaces)!;