Method | Description | |
---|---|---|
Add ( |
Adds an MdxParameter object to the MdxParameterCollection collection.
|
|
Add ( string parameterName, object value ) : |
Creates a new MdxParameter object with the specified name and value and adds it to the collection.
|
|
AddRange ( |
Adds an array of items with the specified values to the MdxParameterCollection.
|
|
AddRange ( |
Adds an array of items with the specified values to the MdxParameterCollection.
|
|
Clear ( ) : void |
Removes all the MdxParameter objects from the MdxParameterCollection.
|
|
Contains ( |
Indicates whether an MdxParameter with the specified property exists in the collection.
|
|
Contains ( object value ) : bool |
Indicates whether an MdxParameter with the specified property exists in the collection.
|
|
Contains ( string value ) : bool |
Indicates whether an MdxParameter with the specified name exists in the collection.
|
|
CopyTo ( |
Copies an array of items to the collection starting at the specified index.
|
|
CopyTo ( |
Copies an array of items to the collection starting at the specified index.
|
|
GetEnumerator ( ) : IEnumerator |
Exposes the GetEnumerator method, which supports a simple iteration over a collection by a .NET Framework data provider.
|
|
IndexOf ( |
Returns the index of the specified MdxParameter object.
|
|
IndexOf ( object value ) : int |
Returns the index of the specified MdxParameter object.
|
|
IndexOf ( string parameterName ) : int |
Returns the index of the specified MdxParameter object.
|
|
Insert ( int index, |
||
Insert ( int index, object value ) : void |
Inserts the specified index of the MdxParameter object with the specified name into the collection at the specified index.
|
|
Remove ( |
Removes the specified MdxParameter object from the collection.
|
|
Remove ( object value ) : void |
Removes the specified MdxParameter object from the collection.
|
|
RemoveAt ( int index ) : void |
Removes the MdxParameter object at the specified from the collection.
|
|
RemoveAt ( string parameterName ) : void |
Removes a specified MdxParameter object from the collection.
|
Method | Description | |
---|---|---|
GetParameter ( int index ) : |
||
GetParameter ( string parameterName ) : |
||
SetParameter ( int index, |
||
SetParameter ( string parameterName, |
Method | Description | |
---|---|---|
Add ( object value ) : int | ||
Find ( string parameterName ) : |
||
MdxParameterCollection ( ) : System | ||
RangeCheck ( string parameterName ) : int | ||
RangeCheck ( int index ) : void | ||
RemoveIndex ( int index ) : void | ||
Replace ( int index, |
||
Validate ( int index, |
||
ValidateType ( object value ) : void |
public Add ( |
||
value | The MdxParameter object to be added. | |
return |
public Add ( string parameterName, object value ) : |
||
parameterName | string | The name of the MdxParameter to add. |
value | object | The value of the MdxParameter object to be created. |
return |
public AddRange ( |
||
values | An array of values of type MdxParameter to add to the collection. | |
return | void |
public AddRange ( |
||
values | An array of values of type MdxParameter to add to the collection. | |
return | void |
public Contains ( |
||
value | The value of the MdxParameter to look for in the collection. | |
return | bool |
public Contains ( object value ) : bool | ||
value | object | The value of the MdxParameter to look for in the collection. |
return | bool |
public Contains ( string value ) : bool | ||
value | string | The name of the MdxParameter to look for in the collection. |
return | bool |
public CopyTo ( |
||
array | The array of items to copy to the collection. | |
index | int | The index in the collection to copy the items. |
return | void |
public CopyTo ( |
||
array | The array of items to copy to the collection. | |
index | int | The index in the collection to copy the items. |
return | void |
protected GetParameter ( int index ) : |
||
index | int | |
return |
protected GetParameter ( string parameterName ) : |
||
parameterName | string | |
return |
public IndexOf ( |
||
value | The MdxParameter object in the collection. | |
return | int |
public IndexOf ( object value ) : int | ||
value | object | The MdxParameter object in the collection. |
return | int |
public IndexOf ( string parameterName ) : int | ||
parameterName | string | The name of the MdxParameter object in the collection. |
return | int |
public Insert ( int index, |
||
index | int | |
value | ||
return | void |
public Insert ( int index, object value ) : void | ||
index | int | The index at which to insert the MdxParameter object. |
value | object | The MdxParameter object to insert into the collection. |
return | void |
public Remove ( |
||
value | The MdxParameter object to remove. | |
return | void |
public Remove ( object value ) : void | ||
value | object | The MdxParameter object to remove. |
return | void |
public RemoveAt ( int index ) : void | ||
index | int | The index where the MdxParameter object is located. |
return | void |
public RemoveAt ( string parameterName ) : void | ||
parameterName | string | The name of the MdxParameter object to remove. |
return | void |
protected SetParameter ( int index, |
||
index | int | |
value | ||
return | void |
protected SetParameter ( string parameterName, |
||
parameterName | string | |
value | ||
return | void |