Click or drag to resize
AppConfigGetValueT Method
Returns the value of a property from the configuration.B

Namespace: Oracle.Cloud.Mobile.MobileBackend
Assembly: Oracle.Cloud.Mobile (in Oracle.Cloud.Mobile.dll) Version: 16.1.3.1 (16.1.3.1)
Syntax
public T GetValue<T>(
	string name,
	T defaultValue = null
)

Parameters

name
Type: SystemString
The name of the application configuration property.
defaultValue (Optional)
Type: T
The default value to return in case the property does not exist in the configuration.

Type Parameters

T
The type of the property value. Supported types are string, int, double and bool.

Return Value

Type: T
The value of the property.
See Also