DTSParamValueCollection.IndexOf 메서드
Returns the zero-based index of the first occurrence of a value in a collection.
네임스페이스: Microsoft.SqlServer.Dts.Tasks.WebServiceTask
어셈블리: Microsoft.SqlServer.WebServiceTask(Microsoft.SqlServer.WebServiceTask.dll)
구문
‘선언
Public Function IndexOf ( _
value As DTSParamValue _
) As Integer
‘사용 방법
Dim instance As DTSParamValueCollection
Dim value As DTSParamValue
Dim returnValue As Integer
returnValue = instance.IndexOf(value)
public int IndexOf(
DTSParamValue value
)
public:
int IndexOf(
DTSParamValue^ value
)
member IndexOf :
value:DTSParamValue -> int
public function IndexOf(
value : DTSParamValue
) : int
매개 변수
- value
유형: Microsoft.SqlServer.Dts.Tasks.WebServiceTask.DTSParamValue
The DTSParamValue to locate in the collection.
반환 값
유형: System.Int32
The index of the first occurrence of the specified value within the collection, if found; otherwise, this method returns -1.