ConfigurationSetting Constructors
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Overloads
ConfigurationSetting(String, String, String) |
Creates a configuration setting and sets the values from the passed in parameter to this setting. |
ConfigurationSetting(String, String, String, ETag) |
Creates a configuration setting and sets the values from the passed in parameter to this setting. |
ConfigurationSetting(String, String, String)
- Source:
- ConfigurationSetting.cs
- Source:
- ConfigurationSetting.cs
Creates a configuration setting and sets the values from the passed in parameter to this setting.
public ConfigurationSetting (string key, string value, string label = default);
new Azure.Data.AppConfiguration.ConfigurationSetting : string * string * string -> Azure.Data.AppConfiguration.ConfigurationSetting
Public Sub New (key As String, value As String, Optional label As String = Nothing)
Parameters
- key
- String
The primary identifier of the configuration setting.
- value
- String
The configuration setting's value.
- label
- String
A label used to group this configuration setting with others.
Applies to
ConfigurationSetting(String, String, String, ETag)
- Source:
- ConfigurationSetting.cs
- Source:
- ConfigurationSetting.cs
Creates a configuration setting and sets the values from the passed in parameter to this setting.
public ConfigurationSetting (string key, string value, string label, Azure.ETag etag);
new Azure.Data.AppConfiguration.ConfigurationSetting : string * string * string * Azure.ETag -> Azure.Data.AppConfiguration.ConfigurationSetting
Public Sub New (key As String, value As String, label As String, etag As ETag)
Parameters
- key
- String
The primary identifier of the configuration setting.
- value
- String
The configuration setting's value.
- label
- String
A label used to group this configuration setting with others.
- etag
- ETag
The ETag value for the configuration setting.
Applies to
Azure SDK for .NET