GetValue<T>(string, string?)
Reads a value from the collection, and returns null
if the value does not exist.
Declaration
T? GetValue<T>(string name, string? scope = null)
Parameters
Type | Name | Description |
---|---|---|
string | name | Argument name. |
string | scope | An optional prefix of |
Returns
Type | Description |
---|---|
T | The value of the argument named |
Type Parameters
Name | Description |
---|---|
T | Value type. |