메소드 | 설명 | |
---|---|---|
Add ( object parameter ) : int |
Adds a parameter to the collection.
|
|
Add ( string parameterName, DbType dbType ) : int |
Adds a new parameter to the collection.
|
|
AddRange ( |
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 ( |
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 ) : |
||
GetParameter ( string parameterName ) : |
||
SetParameter ( int index, |
||
SetParameter ( string parameterName, |
메소드 | 설명 | |
---|---|---|
CheckDuplicateNames ( ) : void | ||
CheckName ( string parameterName ) : int | ||
RangeCheck ( int index ) : void | ||
RemoveIndex ( int index ) : void | ||
Replace ( int index, |
||
Validate ( ) : void | ||
ValidateParameter ( int index, |
||
ValidateType ( object value ) : void |
public Add ( object parameter ) : int | ||
parameter | object | a BigQueryParameter object. |
리턴 | int |
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 |
public AddRange ( |
||
values | an array of BigQueryParameter objects. | |
리턴 | void |
public Contains ( object value ) : bool | ||
value | object | A BigQueryParameter object. |
리턴 | bool |
public Contains ( string parameterName ) : bool | ||
parameterName | string | The name of a BigQueryParameter. |
리턴 | bool |
public CopyTo ( |
||
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 |
protected GetParameter ( int index ) : |
||
index | int | |
리턴 |
protected GetParameter ( string parameterName ) : |
||
parameterName | string | |
리턴 |
public IndexOf ( string parameterName ) : int | ||
parameterName | string | The name of a BigQueryParameter. |
리턴 | int |
public Insert ( int index, object value ) : void | ||
index | int | An index at which to insert an element. |
value | object | A BigQueryParameter to insert. |
리턴 | void |
public Remove ( object value ) : void | ||
value | object | A BigQueryParameter object. |
리턴 | void |
public RemoveAt ( int index ) : void | ||
index | int | An index from which to remove an element. |
리턴 | void |
public RemoveAt ( string parameterName ) : void | ||
parameterName | string | The name of a BigQueryParameter. |
리턴 | void |
protected SetParameter ( int index, |
||
index | int | |
value | ||
리턴 | void |
protected SetParameter ( string parameterName, |
||
parameterName | string | |
value | ||
리턴 | void |