C# Class Azavea.Open.DAO.Tests.TestParameterCollection

/// This thin DbParameterCollection subclass avoids adding a dependency to a specific DbParameterCollection implementation
Inheritance: System.Data.Common.DbParameterCollection
Afficher le fichier Open project: azavea/net-dao Class Usage Examples

Méthodes publiques

Méthode Description
Add ( object value ) : int
AddRange ( Array values ) : void
Clear ( ) : void
Contains ( object value ) : bool
Contains ( string value ) : bool
CopyTo ( Array array, int index ) : void
GetEnumerator ( ) : IEnumerator
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
TestParameterCollection ( ) : System

Méthodes protégées

Méthode Description
GetParameter ( int index ) : DbParameter
GetParameter ( string parameterName ) : DbParameter
SetParameter ( int index, DbParameter value ) : void
SetParameter ( string parameterName, DbParameter value ) : void

Method Details

Add() public méthode

public Add ( object value ) : int
value object
Résultat int

AddRange() public méthode

public AddRange ( Array values ) : void
values System.Array
Résultat void

Clear() public méthode

public Clear ( ) : void
Résultat void

Contains() public méthode

public Contains ( object value ) : bool
value object
Résultat bool

Contains() public méthode

public Contains ( string value ) : bool
value string
Résultat bool

CopyTo() public méthode

public CopyTo ( Array array, int index ) : void
array System.Array
index int
Résultat void

GetEnumerator() public méthode

public GetEnumerator ( ) : IEnumerator
Résultat IEnumerator

GetParameter() protected méthode

protected GetParameter ( int index ) : DbParameter
index int
Résultat System.Data.Common.DbParameter

GetParameter() protected méthode

protected GetParameter ( string parameterName ) : DbParameter
parameterName string
Résultat System.Data.Common.DbParameter

IndexOf() public méthode

public IndexOf ( object value ) : int
value object
Résultat int

IndexOf() public méthode

public IndexOf ( string parameterName ) : int
parameterName string
Résultat int

Insert() public méthode

public Insert ( int index, object value ) : void
index int
value object
Résultat void

Remove() public méthode

public Remove ( object value ) : void
value object
Résultat void

RemoveAt() public méthode

public RemoveAt ( int index ) : void
index int
Résultat void

RemoveAt() public méthode

public RemoveAt ( string parameterName ) : void
parameterName string
Résultat void

SetParameter() protected méthode

protected SetParameter ( int index, DbParameter value ) : void
index int
value System.Data.Common.DbParameter
Résultat void

SetParameter() protected méthode

protected SetParameter ( string parameterName, DbParameter value ) : void
parameterName string
value System.Data.Common.DbParameter
Résultat void

TestParameterCollection() public méthode

public TestParameterCollection ( ) : System
Résultat System