Drey.AppConfigConnectionStrings.Exists C# (CSharp) Method

Exists() public method

Checks to see if a specific key exists in the underlying store.
public Exists ( string name ) : bool
name string The name.
return bool
        public bool Exists(string name)
        {
            return ConfigurationManager.ConnectionStrings["name"] != null;
        }
AppConfigConnectionStrings