Apprenda.SaaSGrid.Addons.NetApp.Models.Volume.BuildConnectionString C# (CSharp) Method

BuildConnectionString() private method

private BuildConnectionString ( ) : string
return string
        internal string BuildConnectionString()
        {
            // if CIFS, return the share path
            if (JunctionPath.Contains("/"))
            {
                return "//" + CifsRootServer + JunctionPath + "/" + Name;
            }
            return "//" + CifsRootServer + "/" + JunctionPath + "/" + Name;
        }
    }