Delegate EnvironmentParser.VariableSource
Used for custom variable lookup implementation. This will be passed
a variable name and should return the value as a string when the variable
exists or null
if it does not.
Pass a custom implementation to the EnvironmentParser constructor when necessary.
Namespace: Neon.Common
Assembly: Neon.Common.dll
Syntax
public delegate string EnvironmentParser.VariableSource(string variable)
Parameters
Type | Name | Description |
---|---|---|
string | variable | The variable name. |
Returns
Type | Description |
---|---|
string | The variable's value or |