Example #1
0
        public static string GetName(AjaxLoadingType type)
        {
            string result = String.Empty;

            switch (type)
            {
                case AjaxLoadingType.Default:
                    result = "default";
                    break;
                case AjaxLoadingType.Mask:
                    result = "mask";
                    break;
            }

            return result;
        }
Example #2
0
        public static string GetName(AjaxLoadingType type)
        {
            string result = String.Empty;

            switch (type)
            {
            case AjaxLoadingType.Default:
                result = "default";
                break;

            case AjaxLoadingType.Mask:
                result = "mask";
                break;
            }

            return(result);
        }