AdomdParameterCollection Class

 

Updated: March 10, 2016

Gets a collection of AdomdParameter objects contained in an AdomdCommand object.

Namespace:   Microsoft.AnalysisServices.AdomdClient
Assembly:  Microsoft.AnalysisServices.AdomdClient (in Microsoft.AnalysisServices.AdomdClient.dll)

System::Object
  System::MarshalByRefObject
    Microsoft.AnalysisServices.AdomdClient::AdomdParameterCollection

public ref class AdomdParameterCollection sealed : MarshalByRefObject, 
	IDataParameterCollection, IList, ICollection, IEnumerable

NameDescription
System_CAPS_pubpropertyCount

Gets the number of AdomdParameter objects in the AdomdParameterCollection collection.

System_CAPS_pubpropertyItem[Int32]

Gets or sets the AdomdParameter object at the specified index, in the AdomdParameterCollection.

System_CAPS_pubpropertyItem[String^]

Gets or sets the AdomdParameter object in the AdomdParameterCollection with the specified name.

NameDescription
System_CAPS_pubmethodAdd(AdomdParameter^)

Adds an AdomdParameter object to the AdomdParameterCollection collection.

System_CAPS_pubmethodAdd(String^, Object^)

Creates a new AdomdParameter object with the specified property name and value, and adds it to the collection.

System_CAPS_pubmethodClear()

Removes all parameters from the AdomdParameterCollection object.

System_CAPS_pubmethodContains(AdomdParameter^)

Determines whether a parameter is in the AdomdParameterCollection collection.

System_CAPS_pubmethodContains(String^)

Given a property name, this method determines whether a parameter is in the AdomdParameterCollection collection.

System_CAPS_pubmethodCopyTo(array<AdomdParameter^>^, Int32)

Copies the elements of the AdomdParameterCollection collection to the specified array.

System_CAPS_pubmethodCreateObjRef(Type^)

(Inherited from MarshalByRefObject.)

System_CAPS_pubmethodEquals(Object^)

(Inherited from Object.)

System_CAPS_pubmethodFind(String^)

Gets the specified AdomdParameter object from the AdomdParameterCollection collection by its name.

System_CAPS_pubmethodGetHashCode()

(Inherited from Object.)

System_CAPS_pubmethodGetLifetimeService()

(Inherited from MarshalByRefObject.)

System_CAPS_pubmethodGetType()

(Inherited from Object.)

System_CAPS_pubmethodIndexOf(AdomdParameter^)

Returns the zero-based index of the first occurrence of a parameter in the AdomdParameterCollection collection.

System_CAPS_pubmethodIndexOf(String^)

Given a property name, this method returns the zero-based index of the first occurrence of a parameter in the AdomdParameterCollection collection.

System_CAPS_pubmethodInitializeLifetimeService()

(Inherited from MarshalByRefObject.)

System_CAPS_pubmethodInsert(Int32, AdomdParameter^)

Inserts a parameter into the AdomdParameterCollection collection at the specified index.

System_CAPS_pubmethodRemove(AdomdParameter^)

Removes the first occurrence of a specific parameter from the AdomdParameterCollection object.

System_CAPS_pubmethodRemoveAt(Int32)

Removes the parameter at the specified index of the AdomdParameterCollection object.

System_CAPS_pubmethodRemoveAt(String^)

Removes the parameter specified by name in the AdomdParameterCollection object.

System_CAPS_pubmethodToString()

(Inherited from Object.)

NameDescription
System_CAPS_pubinterfaceSystem_CAPS_privmethodICollection::CopyTo(Array^, Int32)

Copies the elements of the collection to an array, starting at a particular array index.

System_CAPS_pubinterfaceSystem_CAPS_privmethodIEnumerable::GetEnumerator()

Returns an enumerator that iterates through a collection.

System_CAPS_pubinterfaceSystem_CAPS_privmethodIList::Add(Object^)

Adds an item to the collection.

System_CAPS_pubinterfaceSystem_CAPS_privmethodIList::Contains(Object^)

Determines whether the collection contains the specified value.

System_CAPS_pubinterfaceSystem_CAPS_privmethodIList::IndexOf(Object^)

Determines the index of the specified item in the collection.

System_CAPS_pubinterfaceSystem_CAPS_privmethodIList::Insert(Int32, Object^)

Inserts an item to the collection at the specified index.

System_CAPS_pubinterfaceSystem_CAPS_privmethodIList::Remove(Object^)

Removes the first occurrence of a specified object from the collection.

System_CAPS_pubinterfaceSystem_CAPS_privpropertyICollection::IsSynchronized

Gets a value indicating whether access to the AdomdParameterCollection is synchronized (thread safe).

System_CAPS_pubinterfaceSystem_CAPS_privpropertyICollection::SyncRoot

Gets an object that can be used to synchronize access to the AdomdParameterCollection.

System_CAPS_pubinterfaceSystem_CAPS_privpropertyIList::IsFixedSize

Gets a value indicating whether the AdomdParameterCollection has a fixed size.

System_CAPS_pubinterfaceSystem_CAPS_privpropertyIList::IsReadOnly

Gets a value indicating whether the AdomdParameterCollection is read-only.

System_CAPS_pubinterfaceSystem_CAPS_privpropertyIList::Item[Int32]

Gets or sets the AdomdParameter at the specified index.

System_CAPS_pubinterfaceSystem_CAPS_privpropertyIDataParameterCollection::Item[String^]

Gets or sets the AdomdParameter at the specified index.

Any public static ( Shared in Visual Basic) members of this type are thread safe. Any instance members are not guaranteed to be thread safe.

Return to top
Show: