Hinweis
Für den Zugriff auf diese Seite ist eine Autorisierung erforderlich. Sie können versuchen, sich anzumelden oder das Verzeichnis zu wechseln.
Für den Zugriff auf diese Seite ist eine Autorisierung erforderlich. Sie können versuchen, das Verzeichnis zu wechseln.
Indicates whether the items in a collection can be accessed by using indexing without throwing an exception.
Namespace: Microsoft.SqlServer.Dts.Tasks.WebServiceTask
Assembly: Microsoft.SqlServer.WebServiceTask (in Microsoft.SqlServer.WebServiceTask.dll)
Syntax
'Declaration
Public Function Contains ( _
paramValue As DTSParamValue _
) As Boolean
'Usage
Dim instance As DTSParamValueCollection
Dim paramValue As DTSParamValue
Dim returnValue As Boolean
returnValue = instance.Contains(paramValue)
public bool Contains(
DTSParamValue paramValue
)
public:
bool Contains(
DTSParamValue^ paramValue
)
member Contains :
paramValue:DTSParamValue -> bool
public function Contains(
paramValue : DTSParamValue
) : boolean
Parameter
- paramValue
Typ: Microsoft.SqlServer.Dts.Tasks.WebServiceTask.DTSParamValue
The name, identity, ID, or index of the DTSParamValue object to locate in the collection.
Rückgabewert
Typ: System.Boolean
true if the collection can be accessed by using the syntax DTSParamValueCollection [index]; false if indexing cannot be used to retrieve items from the collection.