Share via


NotebookParameter Constructors

Definition

Overloads

NotebookParameter()

Initializes a new instance of the NotebookParameter class.

NotebookParameter(Object, String)

Initializes a new instance of the NotebookParameter class.

NotebookParameter()

Initializes a new instance of the NotebookParameter class.

public NotebookParameter ();
Public Sub New ()

Applies to

NotebookParameter(Object, String)

Initializes a new instance of the NotebookParameter class.

public NotebookParameter (object value = default, string type = default);
new Microsoft.Azure.Management.DataFactory.Models.NotebookParameter : obj * string -> Microsoft.Azure.Management.DataFactory.Models.NotebookParameter
Public Sub New (Optional value As Object = Nothing, Optional type As String = Nothing)

Parameters

value
Object

Notebook parameter value. Type: string (or Expression with resultType string).

type
String

Notebook parameter type. Possible values include: 'string', 'int', 'float', 'bool'

Applies to