Delegate EnvironmentParser.Parser<T>
Attempts to parse an environment variable as a specific type.
Namespace: Neon.Common
Assembly: Neon.Common.dll
Syntax
public delegate bool EnvironmentParser.Parser<T>(string input, out T value, out string error)
Parameters
Type | Name | Description |
---|---|---|
string | input | The string to be parsed. |
T | value | Returns as the parsed value on success. |
string | error | Returns as the error message on failure. |
Returns
Type | Description |
---|---|
bool |
|
Type Parameters
Name | Description |
---|---|
T | The output type. |