AcquistaBuy
1-855-856-7678
SupportoSupport
public static String GetConfigurationSettingValue ( String configurationSettingName )
public static function GetConfigurationSettingValue ( configurationSettingName : String ) : String
The name of the configuration setting.
| Tipo di eccezione | Condizione |
|---|---|
| RoleEnvironmentException | The configuration setting that was being retrieved does not exist. |
Configuration settings for a role are defined in the ServiceDefinition.csdef file and the values for the settings are configured in the ServiceConfiguration.cscfg file. For more information about defining and configuring settings, see Windows Azure Service Configuration Schema and Windows Azure Service Definition Schema.
The GetConfigurationSettingValue method can be used to retrieve the value that is defined in the ServiceDefinintion.cscfg file. The following code example shows how to get and write out the value for a setting called MySetting:
var settingValue = RoleEnvironment.GetConfigurationSettingValue("MySetting"); Trace.WriteLine("The setting value is: " + settingValue, "Information");