SettingsSectionGetOrAdd Method
Gets the value of the setting with the specified key, if it exists;
otherwise, the default value for the parameter.
Namespace: Gemstone.ConfigurationAssembly: Gemstone.Common (in Gemstone.Common.dll) Version: 1.0.128 -- Release Build+d050cfc5563c89a1188cc3c6b2d417530856f490
public Object? GetOrAdd(
string key,
Object? defaultValue,
string description,
string[]? switchMappings = null
)
Public Function GetOrAdd (
key As String,
defaultValue As Object,
description As String,
Optional switchMappings As String() = Nothing
) As Object
public:
Object^ GetOrAdd(
String^ key,
Object^ defaultValue,
String^ description,
array<String^>^ switchMappings = nullptr
)
function GetOrAdd(key, defaultValue, description, switchMappings);
- key String
- Key name of setting to get, case-insensitive.
- defaultValue Object
- Default value if key does not exist.
- description String
- Description of the setting.
- switchMappings String (Optional)
- Optional array of switch mappings for the setting.
Object
Value of the setting with the specified key, if it exists; otherwise,
the default value for the parameter.