System.Configuration.ProviderSettings.GetProperty C# (CSharp) Method

GetProperty() private method

private GetProperty ( string PropName ) : string
PropName string
return string
        private string GetProperty(string PropName)
        {
            if (_properties.Contains(PropName))
            {
                ConfigurationProperty prop = _properties[PropName];
                if(prop != null)
                    return (string)base[prop];
            }
            return null;
        }