[]
        
(Showing Draft Content)

C1.DataConnector.C1DbParameterCollection.Contains

Contains Method

Contains(string)

Indicates whether a DbParameter with the specified name exists in the collection.

Declaration
public override bool Contains(string paramName)
Parameters
Type Name Description
string paramName

The name of the DbParameter to look for in the collection.

Returns
Type Description
bool

True if the DbParameter is in the collection; otherwise false.

Overrides

Contains(object)

Indicates whether a DbParameter with the specified Value is contained in the collection.

Declaration
public override bool Contains(object value)
Parameters
Type Name Description
object value

The Value of the DbParameter to look for in the collection.

Returns
Type Description
bool

True if the DbParameter is in the collection; otherwise false.

Overrides