Share via


ScriptActivityParameter Constructors

Definition

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'

size
Nullable<Int32>

The size of the output direction parameter.

Applies to