Summary
Enables you to specify, at synchronization time, a value for parameter that you declared by using
DeclareParameter
Also see the documentation at https://technet.microsoft.com/en-us/library/dd569084(v=ws.10).aspx
- Namespace
- Cake
.MsDeploy .Parameters - Interfaces
- Base Types
-
- object
- BaseParameter
graph TD
Base0["BaseParameter"]-->Type
click Base0 "/Cake.MsDeploy/api/Cake.MsDeploy.Parameters/BaseParameter"
Base1["object"]-->Base0
Interface0["IParameter"]-.->Type
click Interface0 "/Cake.MsDeploy/api/Cake.MsDeploy.Parameters/IParameter"
Interface1["IMsDeployArgument"]-.->Type
click Interface1 "/Cake.MsDeploy/api/Cake.MsDeploy/IMsDeployArgument"
Type["SetParameter"]
class Type type-node
Syntax
public class SetParameter : BaseParameter, IParameter, IMsDeployArgument
Properties
Name | Value | Summary |
---|---|---|
Description | string |
An optional user-supplied string that describes the purpose of the parameter
|
Kind | ParameterKind? |
specifies the parameter kind
|
Match | string |
Specifies an item to be matched
|
Name | string |
Name of the declared parameter
|
Scope | string |
The scope of the specified parameter kind
|
Value | string |
Specifies the value for a parameter
|
Methods
Name | Value | Summary |
---|---|---|
Append |
void |
Converts the object into its MSDeploy command line equivalent and Appends it to the stringbuilder
|
Append |
void |
Inherited from BaseParameter
|
To |
string |
Converts the SetParameter into its commmand line argument
|