System.Xaml.NamespaceResolver.GetNamespace C# (CSharp) Method

GetNamespace() public method

public GetNamespace ( string prefix ) : string
prefix string
return string
		public string GetNamespace (string prefix)
		{
			foreach (var nsd in source)
				if (nsd.Prefix == prefix)
					return nsd.Namespace;
			return null;
		}