Share via


SSISPropertyOverride Constructors

Definition

Overloads

SSISPropertyOverride()

Initializes a new instance of the SSISPropertyOverride class.

SSISPropertyOverride(Object, Nullable<Boolean>)

Initializes a new instance of the SSISPropertyOverride class.

SSISPropertyOverride()

Initializes a new instance of the SSISPropertyOverride class.

public SSISPropertyOverride ();
Public Sub New ()

Applies to

SSISPropertyOverride(Object, Nullable<Boolean>)

Initializes a new instance of the SSISPropertyOverride class.

public SSISPropertyOverride (object value, bool? isSensitive = default);
new Microsoft.Azure.Management.DataFactory.Models.SSISPropertyOverride : obj * Nullable<bool> -> Microsoft.Azure.Management.DataFactory.Models.SSISPropertyOverride
Public Sub New (value As Object, Optional isSensitive As Nullable(Of Boolean) = Nothing)

Parameters

value
Object

SSIS package property override value. Type: string (or Expression with resultType string).

isSensitive
Nullable<Boolean>

Whether SSIS package property override value is sensitive data. Value will be encrypted in SSISDB if it is true

Applies to