DTSParamInfo 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.
Initializes a new instance of the DTSParamInfo class.
Overloads
DTSParamInfo() |
Initializes a new instance of the DTSParamInfo class. |
DTSParamInfo(String, String, DTSParamType, Int32) |
Initializes a new instance of the DTSParamInfo class, using information about the parameter passed to the method. |
DTSParamInfo()
Initializes a new instance of the DTSParamInfo class.
public:
DTSParamInfo();
public DTSParamInfo ();
Public Sub New ()
Applies to
DTSParamInfo(String, String, DTSParamType, Int32)
Initializes a new instance of the DTSParamInfo class, using information about the parameter passed to the method.
public:
DTSParamInfo(System::String ^ name, System::String ^ datatype, Microsoft::SqlServer::Dts::Tasks::WebServiceTask::DTSParamType type, int sequenceNumber);
public DTSParamInfo (string name, string datatype, Microsoft.SqlServer.Dts.Tasks.WebServiceTask.DTSParamType type, int sequenceNumber);
new Microsoft.SqlServer.Dts.Tasks.WebServiceTask.DTSParamInfo : string * string * Microsoft.SqlServer.Dts.Tasks.WebServiceTask.DTSParamType * int -> Microsoft.SqlServer.Dts.Tasks.WebServiceTask.DTSParamInfo
Public Sub New (name As String, datatype As String, type As DTSParamType, sequenceNumber As Integer)
Parameters
- name
- String
The name of the parameter.
- datatype
- String
The data type of the parameter.
- type
- DTSParamType
The type of the parameter. This is a value from the DTSParamType enumeration.
- sequenceNumber
- Int32
The sequence number of the parameter in the method signature.