Bagikan melalui


StoredProcedureParameter Constructors

Definition

Overloads

StoredProcedureParameter()

Initializes a new instance of the StoredProcedureParameter class.

StoredProcedureParameter(Object, String)

Initializes a new instance of the StoredProcedureParameter class.

StoredProcedureParameter()

Initializes a new instance of the StoredProcedureParameter class.

public StoredProcedureParameter ();
Public Sub New ()

Applies to

StoredProcedureParameter(Object, String)

Initializes a new instance of the StoredProcedureParameter class.

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

Parameters

value
Object

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

type
String

Stored procedure parameter type. Possible values include: 'String', 'Int', 'Int64', 'Decimal', 'Guid', 'Boolean', 'Date'

Applies to