DataFlowDebugCommandPayload Constructors

Definition

Overloads

DataFlowDebugCommandPayload()

Initializes a new instance of the DataFlowDebugCommandPayload class.

DataFlowDebugCommandPayload(String, Nullable<Int32>, IList<String>, String)

Initializes a new instance of the DataFlowDebugCommandPayload class.

DataFlowDebugCommandPayload()

Initializes a new instance of the DataFlowDebugCommandPayload class.

public DataFlowDebugCommandPayload ();
Public Sub New ()

Applies to

DataFlowDebugCommandPayload(String, Nullable<Int32>, IList<String>, String)

Initializes a new instance of the DataFlowDebugCommandPayload class.

public DataFlowDebugCommandPayload (string streamName, int? rowLimits = default, System.Collections.Generic.IList<string> columns = default, string expression = default);
new Microsoft.Azure.Management.DataFactory.Models.DataFlowDebugCommandPayload : string * Nullable<int> * System.Collections.Generic.IList<string> * string -> Microsoft.Azure.Management.DataFactory.Models.DataFlowDebugCommandPayload
Public Sub New (streamName As String, Optional rowLimits As Nullable(Of Integer) = Nothing, Optional columns As IList(Of String) = Nothing, Optional expression As String = Nothing)

Parameters

streamName
String

The stream name which is used for preview.

rowLimits
Nullable<Int32>

Row limits for preview response.

columns
IList<String>

Array of column names.

expression
String

The expression which is used for preview.

Applies to