Parameters.Contains 메서드
Determines whether a parameter object with the specified name is contained in the parameters collection.
네임스페이스: Microsoft.SqlServer.Dts.Runtime
어셈블리: Microsoft.SqlServer.ManagedDTS(Microsoft.SqlServer.ManagedDTS.dll)
구문
‘선언
Public MustOverride Function Contains ( _
parameterName As String _
) As Boolean
‘사용 방법
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
매개 변수
- parameterName
유형: System.String
The name of the parameter.
반환 값
유형: System.Boolean
true if a parameter object with the specified name is contained in the parameters collection; otherwise, false.