[This is preliminary documentation and is subject to change.]

Reads element at specified path. Element is created if not exist.

Namespace:  Phoenix.Configuration
Assembly:  PhoenixShared (in PhoenixShared.dll) Version: 0.7.0.0

Syntax

         
 C#  Visual Basic  Visual C++ 
public virtual string GetElement(
	string defaultValue,
	params Object[] nodes
)
Public Overridable Function GetElement ( _
	defaultValue As String, _
	ParamArray nodes As Object() _
) As String
public:
virtual String^ GetElement(
	String^ defaultValue, 
	... array<Object^>^ nodes
)

Parameters

defaultValue
String
Default value if element is not found.
nodes
array< Object >[]()[]
Element path

Return Value

String containing read value or default value.

Implements

ISettings..::.GetElement(String, array<Object>[]()[])

See Also