Provider.provideImpl

The implementation method for a provider. This must return true when an entry by the name of n is found and then set its associated value via v_out. Otherwise, false must be returned.

interface Provider
protected
bool
provideImpl
(
string n
,
ref string v_out
)

Parameters

n string

the name being queried

v_out string

the associated value (if found)

Return Value

Type: bool

true if found, false otherwise

Meta