Summary
Gets all arguments with the specific name and throws if the argument is missing.
Syntax
[CakeMethodAlias]
public static ICollection<T> Arguments<T>(this ICakeContext context, string name)
Examples
// Cake.exe .\argument.cake --foo="foo" --foo="bar"
var arguments = Arguments<string>("foo");
Information("Arguments: {0}", string.Join(", ", arguments));
Attributes
Type Parameters
Name |
Description |
T |
The argument type. |
Parameters
Name |
Type |
Description |
context |
ICakeContext |
The context. |
name |
string |
The argument name. |
Return Value
Type |
Description |
ICollection<T> |
The argument values. |