Npgsql.NpgsqlParameterCollection.Contains C# (CSharp) Method

Contains() public method

Gets a value indicating whether a NpgsqlParameter with the specified parameter name exists in the collection.
public Contains ( string parameterName ) : bool
parameterName string The name of the NpgsqlParameter object to find.
return bool
        public override bool Contains(string parameterName)
        {
            NpgsqlEventLog.LogMethodEnter(LogLevel.Debug, CLASSNAME, "Contains", parameterName);
            return (IndexOf(parameterName) != -1);
        }

Same methods

NpgsqlParameterCollection::Contains ( Npgsql.NpgsqlParameter item ) : bool
NpgsqlParameterCollection::Contains ( object value ) : bool