Npgsql.NpgsqlParameterCollection.IndexOf C# (CSharp) Method

IndexOf() public method

Report the offset within the collection of the given parameter.
public IndexOf ( Npgsql.NpgsqlParameter item ) : int
item Npgsql.NpgsqlParameter Parameter to find.
return int
        public int IndexOf(NpgsqlParameter item)
        {
            return InternalList.IndexOf(item);
        }

Same methods

NpgsqlParameterCollection::IndexOf ( object value ) : int
NpgsqlParameterCollection::IndexOf ( string parameterName ) : int