[]
        
(Showing Draft Content)

C1.DataConnector.C1DbParameterCollection.Item

this Property

this[int]

Gets and sets the DbParameter at the specified index.

Declaration
public DbParameter this[int index] { get; set; }
Parameters
Type Name Description
int index

The zero-based index of the parameter.

Property Value
Type Description
DbParameter

The DbParameter at the specified index.

this[string]

Gets and sets the DbParameter with the specified name.

Declaration
public DbParameter this[string paramName] { get; set; }
Parameters
Type Name Description
string paramName

The name of the parameter.

Property Value
Type Description
DbParameter

The DbParameter with the specified name.