2 overrides of GetXamlNamespaces
System.Xaml (1)
System\Xaml\Schema\XamlDirective.cs (1)
89public override IList<string> GetXamlNamespaces()
System.Xaml.Tests (1)
System\Xaml\XamlMemberTests.Mocks.cs (1)
210public override IList<string> GetXamlNamespaces()
8 references to GetXamlNamespaces
System.Xaml (6)
System\Xaml\XamlMarkupExtensionWriter.cs (1)
112string prefix = xamlXmlWriter.LookupPrefix(property.GetXamlNamespaces(), out _);
System\Xaml\XamlMember.cs (1)
212IList<string> namespaces = GetXamlNamespaces();
System\Xaml\XamlXmlWriter.cs (4)
827string prefix = property.IsAttachable || property.IsDirective ? writer.FindPrefix(property.GetXamlNamespaces(), out ns) : writer.FindPrefix(type.GetXamlNamespaces(), out ns); 847string prefix = writer.FindPrefix(property.GetXamlNamespaces(), out ns); 854string prefix = writer.FindPrefix(property.GetXamlNamespaces(), out ns); 1151string prefix = writer.LookupPrefix(property.GetXamlNamespaces(), out chosenNamespace);
System.Xaml.Tests (2)
System\Xaml\XamlMemberTests.cs (1)
2190Assert.Equal(member.DeclaringType.GetXamlNamespaces(), member.GetXamlNamespaces());
System\Xaml\XamlMemberTests.Mocks.cs (1)
212return GetXamlNamespacesResult.Or(base.GetXamlNamespaces)!;