ActivityParameter Constructors
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Overloads
ActivityParameter() |
Initializes a new instance of the ActivityParameter class. |
ActivityParameter(String, String, Nullable<Boolean>, Nullable<Boolean>, Nullable<Int64>, Nullable<Boolean>, Nullable<Boolean>, Nullable<Boolean>, String, IList<ActivityParameterValidationSet>) |
Initializes a new instance of the ActivityParameter class. |
ActivityParameter()
Initializes a new instance of the ActivityParameter class.
public ActivityParameter ();
Public Sub New ()
Applies to
ActivityParameter(String, String, Nullable<Boolean>, Nullable<Boolean>, Nullable<Int64>, Nullable<Boolean>, Nullable<Boolean>, Nullable<Boolean>, String, IList<ActivityParameterValidationSet>)
Initializes a new instance of the ActivityParameter class.
public ActivityParameter (string name = default, string type = default, bool? isMandatory = default, bool? isDynamic = default, long? position = default, bool? valueFromPipeline = default, bool? valueFromPipelineByPropertyName = default, bool? valueFromRemainingArguments = default, string description = default, System.Collections.Generic.IList<Microsoft.Azure.Management.Automation.Models.ActivityParameterValidationSet> validationSet = default);
new Microsoft.Azure.Management.Automation.Models.ActivityParameter : string * string * Nullable<bool> * Nullable<bool> * Nullable<int64> * Nullable<bool> * Nullable<bool> * Nullable<bool> * string * System.Collections.Generic.IList<Microsoft.Azure.Management.Automation.Models.ActivityParameterValidationSet> -> Microsoft.Azure.Management.Automation.Models.ActivityParameter
Public Sub New (Optional name As String = Nothing, Optional type As String = Nothing, Optional isMandatory As Nullable(Of Boolean) = Nothing, Optional isDynamic As Nullable(Of Boolean) = Nothing, Optional position As Nullable(Of Long) = Nothing, Optional valueFromPipeline As Nullable(Of Boolean) = Nothing, Optional valueFromPipelineByPropertyName As Nullable(Of Boolean) = Nothing, Optional valueFromRemainingArguments As Nullable(Of Boolean) = Nothing, Optional description As String = Nothing, Optional validationSet As IList(Of ActivityParameterValidationSet) = Nothing)
Parameters
- name
- String
Gets or sets the name of the activity parameter.
- type
- String
Gets or sets the type of the activity parameter.
Gets or sets a Boolean value that indicates true if the parameter is required. If the value is false, the parameter is optional.
Gets or sets a Boolean value that indicates true if the parameter is dynamic.
Gets or sets a Boolean value that indicates true if the parameter can take values from the incoming pipeline objects. This setting is used if the cmdlet must access the complete input object. false indicates that the parameter cannot take values from the complete input object.
Gets or sets a Boolean value that indicates true if the parameter can be filled from a property of the incoming pipeline object that has the same name as this parameter. false indicates that the parameter cannot be filled from the incoming pipeline object property with the same name.
Gets or sets a Boolean value that indicates true if the cmdlet parameter accepts all the remaining command-line arguments that are associated with this parameter in the form of an array. false if the cmdlet parameter does not accept all the remaining argument values.
- description
- String
Gets or sets the description of the activity parameter.
- validationSet
- IList<ActivityParameterValidationSet>
Gets or sets the validation set of activity parameter.
Applies to
Azure SDK for .NET