StoredProcedureParameter Constructors
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
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'