Click or drag to resize

AppEnvReader methods

The AppEnvReader Type exposes the following members.

Methods
 NameDescription of the
Public MethodGetParametersSources Returns a dictionary containing the name of the source for each parameter. Can be helpful for troubleshooting in certain cases.
Public MethodGetStringValue Returns exactly one value for a key. If there is no value for the key, defaultValue is returned. Wildcards of the form %Name% are replaced recursively if possible.
Public MethodGetStringValues Returns a string array for a key. If there is no value for the key, defaultValue is returned.
Public MethodGetValueT Returns exactly one value for a key. If there is no value for the key, defaultValue is returned. Wildcards of the form %Name% are replaced recursively if possible; An attempt is made to cast the determined string value to the return type T.
Public MethodGetValuesT NOT IMPLEMENTED! Returns an array of values for a key. If there is no value for the key, defaultValue is returned. Wildcards of the form %Name% are replaced recursively if possible; An attempt is made to cast the determined string value to the return type T.
Public MethodIsDefault Returns true if the passed property does not have external sources, but was filled by the default value.
Public MethodRegisterKeyValue List that can be filled externally with key-value pairs. This list is also taken into account in the search.
Public MethodRegisterStringValueGetter Adds stringValueGetter to the end of the list.
Public MethodRegisterStringValueGetterAt Inserts stringValueGetter at the passed index into the list.
Public MethodRegisterStringValueGetterBefore Inserts stringValueGetter into the list before the anchor.
Public MethodUnregisterKey List that can be filled externally with key-value pairs. The given key is removed from the list.
Public MethodUnregisterStringValueGetter Deletes stringValueGetter from the list.
Back to the top
See also