Npgsql.NpgsqlParameterCollection.Remove C# (CSharp) Method

Remove() public method

Remove the specified parameter from the collection.
public Remove ( Npgsql.NpgsqlParameter item ) : bool
item Npgsql.NpgsqlParameter Parameter to remove.
return bool
        public bool Remove(NpgsqlParameter item)
        {
            if (InternalList.Remove(item))
            {
                item.Collection = null;
                this.InvalidateHashLookups();

                return true;
            }

            return false;
        }

Same methods

NpgsqlParameterCollection::Remove ( object oValue ) : void
NpgsqlParameterCollection::Remove ( string parameterName ) : void