Bloom.web.ErrorLevelExtensions.ToJsonPropertyString C# (CSharp) Method

ToJsonPropertyString() public static method

public static ToJsonPropertyString ( this urlType ) : string
urlType this
return string
        public static string ToJsonPropertyString(this UrlType urlType)
        {
            string urlTypeAsString = urlType.ToString();
            return urlTypeAsString.Substring(0, 1).ToLowerInvariant() + urlTypeAsString.Substring(1);
        }
ErrorLevelExtensions