SqlCeParameterCollection.Contains Method (Object)

Gets a value indicating whether or not a SqlCeParameter object exists in the collection.

Namespace:  System.Data.SqlServerCe
Assembly:  System.Data.SqlServerCe (in System.Data.SqlServerCe.dll)

Syntax

'Declaration
Public Overrides Function Contains ( _
    value As Object _
) As Boolean
'Usage
Dim instance As SqlCeParameterCollection
Dim value As Object
Dim returnValue As Boolean

returnValue = instance.Contains(value)
public override bool Contains(
    Object value
)
public:
virtual bool Contains(
    Object^ value
) override
abstract Contains : 
        value:Object -> bool 
override Contains : 
        value:Object -> bool 
public override function Contains(
    value : Object
) : boolean

Parameters

Return Value

Type: System.Boolean
true if the collection contains the SqlCeParameter; otherwise, false.

Implements

IList.Contains(Object)

Examples

The following example searches for a SqlCeParameter within a SqlCeParameterCollection. If the parameter exists, the example displays the index of the parameter. If the parameter does not exist, the example displays an error. This example assumes that a SqlCeCommand has already been created.

' ...
' create SqlCeCommand cmd
' ...
Dim myParam As SqlCeParameter = cmd.Parameters.Add("@Description", SqlDbType.NVarChar)
If Not cmd.Parameters.Contains(myParam) Then
    MessageBox.Show("ERROR: no such parameter in the collection")
Else
    MessageBox.Show("match on parameter #" & cmd.Parameters.IndexOf(myParam).ToString())
End If
// ...
// create SqlCeCommand cmd
// ...
SqlCeParameter myParam = cmd.Parameters.Add("@Description", SqlDbType.NVarChar);
if (!cmd.Parameters.Contains(myParam))
    MessageBox.Show("ERROR: no such parameter in the collection");
else
    MessageBox.Show("match on parameter #" +
        cmd.Parameters.IndexOf(myParam).ToString());

See Also

Reference

SqlCeParameterCollection Class

Contains Overload

System.Data.SqlServerCe Namespace