Elastacloud.AzureManagement.Fluent.Types.CscfgFile.GetSettingWithoutRole C# (CSharp) Method

GetSettingWithoutRole() public method

Returns a setting without needing to have a role to look up
public GetSettingWithoutRole ( string settingName ) : string
settingName string The name of the setting
return string
        public string GetSettingWithoutRole(string settingName)
        {
            var element = GetSetting(settingName);
            if (element == null)
                return null;
            return element.Attribute("value").Value;
        }