ParamSet.access

Invokes dg with the original key and a reference to the parameter value for key if key is one of parameter keys passed on instantiation or added by a subclass.

class ParamSet
bool
access
(
cstring key
,
scope void delegate
(
cstring key
,
ref cstring val
)
dg
)

Parameters

key cstring

parameter key (case insensitive)

dg void delegate
(
cstring key
,
ref cstring val
)

callback delegate

Return Value

Type: bool

true if key is one of the parameter keys passed on instantiation or added by a subclass or false otherwise. In case of false dg was not invoked.

Meta