NHibernate.Lob.External.Helper.Host C# (CSharp) Method

Host() public static method

public static Host ( string bucket ) : string
bucket string
return string
        public static string Host(string bucket)
        {
            if (bucket == "")
                return DEFAULT_SERVER;
            else
                return bucket + "." + DEFAULT_SERVER;
        }