Npgsql.NpgsqlParameterCollection.Contains C# (CSharp) Method

Contains() public method

Gets a value indicating whether a NpgsqlParameter exists in the collection.
public Contains ( object value ) : bool
value object The value of the NpgsqlParameter object to find.
return bool
        public override bool Contains(object value)
        {
            NpgsqlEventLog.LogMethodEnter(LogLevel.Debug, CLASSNAME, "Contains", value);
            if (!(value is NpgsqlParameter))
            {
                return false;
            }
            return this.InternalList.Contains((NpgsqlParameter) value);
        }

Same methods

NpgsqlParameterCollection::Contains ( Npgsql.NpgsqlParameter item ) : bool
NpgsqlParameterCollection::Contains ( string parameterName ) : bool