ICakeArguments Interface

Summary

Represents arguments passed to the executing script.
Namespace
Cake.Core
Implementing Types
graph BT Type["ICakeArguments"] class Type type-node Implementing0["CakeArguments"]-.->Type click Implementing0 "/api/Cake.Core/CakeArguments"

Syntax

public interface ICakeArguments

Methods

Name Value Summary
GetArguments() IDictionary<string, ICollection<string>>
Gets all command line arguments.
GetArguments(string) ICollection<string>
Gets all values for an argument.
HasArgument(string) bool
Determines whether or not the specified argument exist.

Extension Methods

Name Value Summary
Dump<ICakeArguments>() string
Get a basic string representation of specified object.
Requires the Cake.Incubator addin
GetArgument(string) string
Gets the value for an argument.
IsIn<ICakeArguments>(ICakeArguments[]) bool
Checks if the source is contained in a list
Requires the Cake.Incubator addin
NotNull<ICakeArguments>(string) void
Throws an exception if the specified parameter's value is null.
Requires the Cake.Ftp addin
NotNull<ICakeArguments>(string) void
Throws an exception if the specified parameter's value is null.
Requires the Cake.Issues addin
ThrowIfNull<ICakeArguments>(string, string) T
Throws a System.ArgumentNullException with a specific message if the value is null, otherwise returns the value
Requires the Cake.Incubator addin
ThrowIfNull<ICakeArguments>(string) T
Throws a System.ArgumentNullException if the value is null, otherwise returns the value
Requires the Cake.Incubator addin
ToDictionary() IDictionary<string, object>
Requires the Cake.DeployParams addin