AdomdParameterCollection Class

This class gets a collection of AdomdParameter objects contained in a AdomdCommand object.

Inheritance Hierarchy

Object
  MarshalByRefObject
    Microsoft.AnalysisServices.AdomdServer.AdomdParameterCollection

Namespace:  Microsoft.AnalysisServices.AdomdServer
Assembly:  msmgdsrv (in msmgdsrv.dll)

Syntax

'Declaration
Public NotInheritable Class AdomdParameterCollection _
    Inherits MarshalByRefObject _
    Implements IDataParameterCollection
'Usage
Dim instance As AdomdParameterCollection
public sealed class AdomdParameterCollection : MarshalByRefObject, 
    IDataParameterCollection
public ref class AdomdParameterCollection sealed : public MarshalByRefObject, 
    IDataParameterCollection
[<SealedAttribute>]
type AdomdParameterCollection =  
    class 
        inherit MarshalByRefObject 
        interface IDataParameterCollection 
    end
public final class AdomdParameterCollection extends MarshalByRefObject implements IDataParameterCollection

The AdomdParameterCollection type exposes the following members.

Properties

  Name Description
Public property Count Gets the number of AdomdParameter objects in the AdomdParameterCollection collection.
Public property Item[Int32] Gets the specified AdomdParameter object from the AdomdParameterCollection collection by its index. In Microsoft Visual C#, this property is the indexer for the AdomdParameterCollection class.
Public property Item[String] Gets the specified AdomdParameter object from the AdomdParameterCollection collection by its name. In Microsoft Visual C#, this property is the indexer for the AdomdParameterCollection class.

Top

Methods

  Name Description
Public method Add(AdomdParameter) Adds a AdomdParameter object to the AdomdParameterCollection collection.
Public method Add(String, Object) Creates a new AdomdParameter object with the specified property name and value, and adds it to the collection.
Public method Clear Removes all parameters from the AdomdParameterCollection object.
Public method Contains(String) Given a property name, this method determines whether a parameter is in the AdomdParameterCollection collection.
Public method Contains(AdomdParameter) Determines whether a parameter is in the AdomdParameterCollection collection.
Public method CopyTo Copies the elements of the AdomdParameterCollection collection to the specified array.
Public method CreateObjRef Security Critical. (Inherited from MarshalByRefObject.)
Public method Equals (Inherited from Object.)
Public method Find Gets the specified AdomdParameter object from the AdomdParameterCollection collection by its name.
Protected method GetEnumerator
Public method GetHashCode (Inherited from Object.)
Public method GetLifetimeService Security Critical. (Inherited from MarshalByRefObject.)
Public method GetType (Inherited from Object.)
Public method IndexOf(String) Given a property name, this method returns the zero-based index of the first occurrence of a parameter in the AdomdParameterCollection collection.
Public method IndexOf(AdomdParameter) Returns the zero-based index of the first occurrence of a parameter in the AdomdParameterCollection collection.
Public method InitializeLifetimeService Security Critical. (Inherited from MarshalByRefObject.)
Public method Insert Inserts a parameter into the AdomdParameterCollection collection at the specified index.
Public method Remove Removes the first occurrence of a specific parameter from the AdomdParameterCollection object.
Public method RemoveAt(Int32) Removes the parameter at the specified index of the AdomdParameterCollection object.
Public method RemoveAt(String) Removes the parameter specified by name in the AdomdParameterCollection object.
Public method ToString (Inherited from Object.)

Top

Explicit Interface Implementations

  Name Description
Explicit interface implemetationPrivate method IListAdd Adds an item to the AdomdParameterCollection.
Explicit interface implemetationPrivate method IListContains Determines whether the AdomdParameterCollection contains a specific value.
Explicit interface implemetationPrivate method ICollectionCopyTo Copies the elements of the AdomdParameterCollection to the specified array, starting at a particular array index.
Explicit interface implemetationPrivate method IListIndexOf Determines the index of the AdomdParameter in the AdomdParameterCollection.
Explicit interface implemetationPrivate method IListInsert Inserts an item to the AdomdParameterCollection at the specified index.
Explicit interface implemetationPrivate method IListRemove Removes the first occurrence of the AdomdParameter object from the collection.

Top

Thread Safety

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

See Also

Reference

Microsoft.AnalysisServices.AdomdServer Namespace