DTSParamInfo 构造函数 (String, String, DTSParamType, Int32)
Initializes a new instance of the DTSParamInfo class, using information about the parameter passed to the method.
命名空间: Microsoft.SqlServer.Dts.Tasks.WebServiceTask
程序集: Microsoft.SqlServer.WebServiceTask(在 Microsoft.SqlServer.WebServiceTask.dll 中)
语法
声明
Public Sub New ( _
name As String, _
datatype As String, _
type As DTSParamType, _
sequenceNumber As Integer _
)
用法
Dim name As String
Dim datatype As String
Dim type As DTSParamType
Dim sequenceNumber As Integer
Dim instance As New DTSParamInfo(name, datatype, _
type, sequenceNumber)
public DTSParamInfo(
string name,
string datatype,
DTSParamType type,
int sequenceNumber
)
public:
DTSParamInfo(
String^ name,
String^ datatype,
DTSParamType type,
int sequenceNumber
)
new :
name:string *
datatype:string *
type:DTSParamType *
sequenceNumber:int -> DTSParamInfo
public function DTSParamInfo(
name : String,
datatype : String,
type : DTSParamType,
sequenceNumber : int
)
参数
- name
类型:System. . :: . .String
The name of the parameter.
- datatype
类型:System. . :: . .String
The data type of the parameter.
- type
类型:Microsoft.SqlServer.Dts.Tasks.WebServiceTask. . :: . .DTSParamType
The type of the parameter. This is a value from the DTSParamType enumeration.
- sequenceNumber
类型:System. . :: . .Int32
The sequence number of the parameter in the method signature.