[]
Indicates whether a DbParameter with the specified name exists in the collection.
public override bool Contains(string paramName)
Type | Name | Description |
---|---|---|
string | paramName | The name of the DbParameter to look for in the collection. |
Type | Description |
---|---|
bool | True if the DbParameter is in the collection; otherwise false. |
Indicates whether a DbParameter with the specified Value is contained in the collection.
public override bool Contains(object value)
Type | Name | Description |
---|---|---|
object | value | The Value of the DbParameter to look for in the collection. |
Type | Description |
---|---|
bool | True if the DbParameter is in the collection; otherwise false. |