Westwind.Globalization.DbResXConverter.IsLocalResourceSet C# (CSharp) Method

IsLocalResourceSet() public static method

Determines if a resourceset is a local resource based on the extension of the resource set
public static IsLocalResourceSet ( string resourceSet ) : bool
resourceSet string
return bool
        public static bool IsLocalResourceSet(string resourceSet)
        {
            var lres = resourceSet.ToLower();
            if (lres.EndsWith(".aspx") || lres.EndsWith(".ascx") || lres.EndsWith(".master") || lres.EndsWith(".sitemap"))
                return true;

            return false;
        }