FeedbackScript.Admin.Models.ReportsDomain.getConnectionString C# (CSharp) Method

getConnectionString() protected method

protected getConnectionString ( ) : string
return string
        protected string getConnectionString()
        {
            try
            {
                string connectionString = "";
                ConnectionManager cm = new ConnectionManager();
                cm.setEncryptionKeyString("This is some key that no one knows.");
                cm.Open();
                //connectionString = cm.getConnectionString();
                return connectionString;
            }
            catch (Exception ex)
            {
                throw ex;
            }
        }