5 implementations of GetNamespace
PresentationFramework (2)
System\Windows\Markup\XmlnsDictionary.cs (1)
266public string GetNamespace(string prefix)
System\Windows\TemplateContent.cs (1)
1462string IXamlNamespaceResolver.GetNamespace(string prefix)
System.Xaml (1)
System\Xaml\Context\ServiceProviderContext.cs (1)
248string IXamlNamespaceResolver.GetNamespace(string prefix)
System.Xaml.Tests (2)
System\Xaml\Schema\XamlTypeNameTests.cs (1)
502public string GetNamespace(string prefix)
System\Xaml\Schema\XamlTypeTypeConverterTests.cs (1)
324public string GetNamespace(string prefix)
5 references to GetNamespace
PresentationFramework (1)
System\Windows\TemplateContent.cs (1)
1476return ((IXamlNamespaceResolver)_services.GetService(typeof(IXamlNamespaceResolver))).GetNamespace(prefix);
System.Xaml (4)
System\Xaml\XamlTypeName.cs (4)
98XamlTypeName result = ParseInternal(typeName, namespaceResolver.GetNamespace, out error); 113IList<XamlTypeName> result = ParseListInternal(typeNameList, namespaceResolver.GetNamespace, out error); 128result = ParseInternal(typeName, namespaceResolver.GetNamespace, out _); 138result = ParseListInternal(typeNameList, namespaceResolver.GetNamespace, out _);