C# Class System.Data.Common.DbParameterCollection

Inheritance: MarshalByRefObject, IDataParameterCollection
显示文件 Open project: dotnet/corefx Class Usage Examples

Private Properties

Property Type Description
GetEnumerator IEnumerator

Public Methods

Method Description
Add ( object value ) : int
AddRange ( System values ) : void
Clear ( ) : void
Contains ( object value ) : bool
Contains ( string value ) : bool
CopyTo ( System array, int index ) : void
IndexOf ( object value ) : int
IndexOf ( string parameterName ) : int
Insert ( int index, object value ) : void
Remove ( object value ) : void
RemoveAt ( int index ) : void
RemoveAt ( string parameterName ) : void
this ( int index ) : DbParameter
this ( string parameterName ) : DbParameter

Protected Methods

Method Description
DbParameterCollection ( ) : System.ComponentModel
GetParameter ( int index ) : DbParameter
GetParameter ( string parameterName ) : DbParameter
SetParameter ( int index, DbParameter value ) : void
SetParameter ( string parameterName, DbParameter value ) : void
this ( string parameterName ) : objectIDataParameterCollection.System.ComponentModel
this ( int index ) : objectIList.System.ComponentModel

Private Methods

Method Description
GetEnumerator ( ) : IEnumerator

Method Details

Add() public abstract method

public abstract Add ( object value ) : int
value object
return int

AddRange() public abstract method

public abstract AddRange ( System values ) : void
values System
return void

Clear() public abstract method

public abstract Clear ( ) : void
return void

Contains() public abstract method

public abstract Contains ( object value ) : bool
value object
return bool

Contains() public abstract method

public abstract Contains ( string value ) : bool
value string
return bool

CopyTo() public abstract method

public abstract CopyTo ( System array, int index ) : void
array System
index int
return void

DbParameterCollection() protected method

protected DbParameterCollection ( ) : System.ComponentModel
return System.ComponentModel

GetParameter() protected abstract method

protected abstract GetParameter ( int index ) : DbParameter
index int
return DbParameter

GetParameter() protected abstract method

protected abstract GetParameter ( string parameterName ) : DbParameter
parameterName string
return DbParameter

IndexOf() public abstract method

public abstract IndexOf ( object value ) : int
value object
return int

IndexOf() public abstract method

public abstract IndexOf ( string parameterName ) : int
parameterName string
return int

Insert() public abstract method

public abstract Insert ( int index, object value ) : void
index int
value object
return void

Remove() public abstract method

public abstract Remove ( object value ) : void
value object
return void

RemoveAt() public abstract method

public abstract RemoveAt ( int index ) : void
index int
return void

RemoveAt() public abstract method

public abstract RemoveAt ( string parameterName ) : void
parameterName string
return void

SetParameter() protected abstract method

protected abstract SetParameter ( int index, DbParameter value ) : void
index int
value DbParameter
return void

SetParameter() protected abstract method

protected abstract SetParameter ( string parameterName, DbParameter value ) : void
parameterName string
value DbParameter
return void

this() public method

public this ( int index ) : DbParameter
index int
return DbParameter

this() public method

public this ( string parameterName ) : DbParameter
parameterName string
return DbParameter

this() protected method

protected this ( string parameterName ) : objectIDataParameterCollection.System.ComponentModel
parameterName string
return objectIDataParameterCollection.System.ComponentModel

this() protected method

protected this ( int index ) : objectIList.System.ComponentModel
index int
return objectIList.System.ComponentModel