5 implementations of GetNamespace
PresentationFramework (2)
System\Windows\Markup\XmlnsDictionary.cs (1)
267public string GetNamespace(string prefix)
System\Windows\TemplateContent.cs (1)
1465string IXamlNamespaceResolver.GetNamespace(string prefix)
System.Xaml (1)
System\Xaml\Context\ServiceProviderContext.cs (1)
249string 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)
1479return ((IXamlNamespaceResolver)_services.GetService(typeof(IXamlNamespaceResolver))).GetNamespace(prefix);
System.Xaml (4)
System\Xaml\XamlTypeName.cs (4)
99XamlTypeName result = ParseInternal(typeName, namespaceResolver.GetNamespace, out error); 114IList<XamlTypeName> result = ParseListInternal(typeNameList, namespaceResolver.GetNamespace, out error); 129result = ParseInternal(typeName, namespaceResolver.GetNamespace, out _); 139result = ParseListInternal(typeNameList, namespaceResolver.GetNamespace, out _);