Alba.Jaml.MSInternal.XamlContext.GetAttributeNamespace C# (CSharp) Method

GetAttributeNamespace() public method

public GetAttributeNamespace ( XamlPropertyName propName, string tagNamespace ) : string
propName XamlPropertyName
tagNamespace string
return string
        public string GetAttributeNamespace (XamlPropertyName propName, string tagNamespace)
        {
            if (string.IsNullOrEmpty(propName.Prefix) && !propName.IsDotted) {
                return tagNamespace;
            }
            return this.ResolveXamlNameNS(propName);
        }