2 overrides of GetXamlNamespaces
System.Xaml (1)
System\Xaml\Schema\XamlDirective.cs (1)
88public 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)
111string prefix = xamlXmlWriter.LookupPrefix(property.GetXamlNamespaces(), out _);
System\Xaml\XamlMember.cs (1)
212IList<string> namespaces = GetXamlNamespaces();
System\Xaml\XamlXmlWriter.cs (4)
824string prefix = property.IsAttachable || property.IsDirective ? writer.FindPrefix(property.GetXamlNamespaces(), out ns) : writer.FindPrefix(type.GetXamlNamespaces(), out ns); 844string prefix = writer.FindPrefix(property.GetXamlNamespaces(), out ns); 851string prefix = writer.FindPrefix(property.GetXamlNamespaces(), out ns); 1143string 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)!;