ScriptActivityParameter 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
ScriptActivityParameter() |
Initializes a new instance of the ScriptActivityParameter class. |
ScriptActivityParameter(Object, String, Object, String, Nullable<Int32>) |
Initializes a new instance of the ScriptActivityParameter class. |
ScriptActivityParameter()
Initializes a new instance of the ScriptActivityParameter class.
public ScriptActivityParameter ();
Public Sub New ()
Applies to
ScriptActivityParameter(Object, String, Object, String, Nullable<Int32>)
Initializes a new instance of the ScriptActivityParameter class.
public ScriptActivityParameter (object name = default, string type = default, object value = default, string direction = default, int? size = default);
new Microsoft.Azure.Management.DataFactory.Models.ScriptActivityParameter : obj * string * obj * string * Nullable<int> -> Microsoft.Azure.Management.DataFactory.Models.ScriptActivityParameter
Public Sub New (Optional name As Object = Nothing, Optional type As String = Nothing, Optional value As Object = Nothing, Optional direction As String = Nothing, Optional size As Nullable(Of Integer) = Nothing)
Parameters
- name
- Object
The name of the parameter. Type: string (or Expression with resultType string).
- type
- String
The type of the parameter. Possible values include: 'Boolean', 'DateTime', 'DateTimeOffset', 'Decimal', 'Double', 'Guid', 'Int16', 'Int32', 'Int64', 'Single', 'String', 'Timespan'
- value
- Object
The value of the parameter.
- direction
- String
The direction of the parameter. Possible values include: 'Input', 'Output', 'InputOutput'
Applies to
Azure SDK for .NET