C# 클래스 DevExpress.DataAccess.BigQuery.BigQueryParameterCollection

A collection of BigQueryParameter objects.
상속: System.Data.Common.DbParameterCollection
파일 보기 프로젝트 열기: DevExpress/BigQueryProvider 1 사용 예제들

공개 메소드들

메소드 설명
Add ( object parameter ) : int

Adds a parameter to the collection.

Add ( string parameterName, DbType dbType ) : int

Adds a new parameter to the collection.

AddRange ( Array values ) : void

Adds an array of values to the current collection.

Clear ( ) : void

Removes all items from the collection.

Contains ( object value ) : bool

Indicates whether or not the current collection contains the specified BigQueryParameter.

Contains ( string parameterName ) : bool

Indicates whether or not the current collection contains the specified BigQueryParameter.

CopyTo ( Array array, int index ) : void

Copies the element of the current collection to the specified position of an Array.

GetEnumerator ( ) : IEnumerator

Returns an enumerator used to iterate through the collection.

IndexOf ( object value ) : int

returns the index of the specified object.

IndexOf ( string parameterName ) : int

returns the index of the specified parameter.

Insert ( int index, object value ) : void

Inserts a BigQueryParameter to the current collection.

Remove ( object value ) : void

Removes the specified BigQueryParameter form the collection.

RemoveAt ( int index ) : void

Removes a BigQueryParameter specified by index from the collection.

RemoveAt ( string parameterName ) : void

Removes a BigQueryParameter specified by name from the collection.

보호된 메소드들

메소드 설명
GetParameter ( int index ) : DbParameter
GetParameter ( string parameterName ) : DbParameter
SetParameter ( int index, DbParameter value ) : void
SetParameter ( string parameterName, DbParameter value ) : void

비공개 메소드들

메소드 설명
CheckDuplicateNames ( ) : void
CheckName ( string parameterName ) : int
RangeCheck ( int index ) : void
RemoveIndex ( int index ) : void
Replace ( int index, DbParameter value ) : void
Validate ( ) : void
ValidateParameter ( int index, DbParameter value ) : void
ValidateType ( object value ) : void

메소드 상세

Add() 공개 메소드

Adds a parameter to the collection.
public Add ( object parameter ) : int
parameter object a BigQueryParameter object.
리턴 int

Add() 공개 메소드

Adds a new parameter to the collection.
public Add ( string parameterName, DbType dbType ) : int
parameterName string The name of a BigQueryParameter.
dbType DbType A DBType enumeration value specifying the data type of the parameter.
리턴 int

AddRange() 공개 메소드

Adds an array of values to the current collection.
public AddRange ( Array values ) : void
values System.Array an array of BigQueryParameter objects.
리턴 void

Clear() 공개 메소드

Removes all items from the collection.
public Clear ( ) : void
리턴 void

Contains() 공개 메소드

Indicates whether or not the current collection contains the specified BigQueryParameter.
public Contains ( object value ) : bool
value object A BigQueryParameter object.
리턴 bool

Contains() 공개 메소드

Indicates whether or not the current collection contains the specified BigQueryParameter.
public Contains ( string parameterName ) : bool
parameterName string The name of a BigQueryParameter.
리턴 bool

CopyTo() 공개 메소드

Copies the element of the current collection to the specified position of an Array.
public CopyTo ( Array array, int index ) : void
array System.Array An zero-based Array to which to copy the elements of the collection.
index int An index within an Array at which to start copying.
리턴 void

GetEnumerator() 공개 메소드

Returns an enumerator used to iterate through the collection.
public GetEnumerator ( ) : IEnumerator
리턴 IEnumerator

GetParameter() 보호된 메소드

protected GetParameter ( int index ) : DbParameter
index int
리턴 System.Data.Common.DbParameter

GetParameter() 보호된 메소드

protected GetParameter ( string parameterName ) : DbParameter
parameterName string
리턴 System.Data.Common.DbParameter

IndexOf() 공개 메소드

returns the index of the specified object.
public IndexOf ( object value ) : int
value object an object to find.
리턴 int

IndexOf() 공개 메소드

returns the index of the specified parameter.
public IndexOf ( string parameterName ) : int
parameterName string The name of a BigQueryParameter.
리턴 int

Insert() 공개 메소드

Inserts a BigQueryParameter to the current collection.
public Insert ( int index, object value ) : void
index int An index at which to insert an element.
value object A BigQueryParameter to insert.
리턴 void

Remove() 공개 메소드

Removes the specified BigQueryParameter form the collection.
public Remove ( object value ) : void
value object A BigQueryParameter object.
리턴 void

RemoveAt() 공개 메소드

Removes a BigQueryParameter specified by index from the collection.
public RemoveAt ( int index ) : void
index int An index from which to remove an element.
리턴 void

RemoveAt() 공개 메소드

Removes a BigQueryParameter specified by name from the collection.
public RemoveAt ( string parameterName ) : void
parameterName string The name of a BigQueryParameter.
리턴 void

SetParameter() 보호된 메소드

protected SetParameter ( int index, DbParameter value ) : void
index int
value System.Data.Common.DbParameter
리턴 void

SetParameter() 보호된 메소드

protected SetParameter ( string parameterName, DbParameter value ) : void
parameterName string
value System.Data.Common.DbParameter
리턴 void