Kommentar
Åtkomst till den här sidan kräver auktorisering. Du kan prova att logga in eller ändra kataloger.
Åtkomst till den här sidan kräver auktorisering. Du kan prova att ändra kataloger.
Determines whether a parameter object with the specified name is contained in the parameters collection.
Namespace: Microsoft.SqlServer.Dts.Runtime
Assembly: Microsoft.SqlServer.ManagedDTS (in Microsoft.SqlServer.ManagedDTS.dll)
Syntax
'Declaration
Public MustOverride Function Contains ( _
parameterName As String _
) As Boolean
'Usage
Dim instance As Parameters
Dim parameterName As String
Dim returnValue As Boolean
returnValue = instance.Contains(parameterName)
public abstract bool Contains(
string parameterName
)
public:
virtual bool Contains(
String^ parameterName
) abstract
abstract Contains :
parameterName:string -> bool
public abstract function Contains(
parameterName : String
) : boolean
Parameters
- parameterName
Type: System.String
The name of the parameter.
Return Value
Type: System.Boolean
true if a parameter object with the specified name is contained in the parameters collection; otherwise, false.