Compartilhar via


Classe Set

Represents an ordered collection of zero or more tuples.

Hierarquia de herança

System.Object
  Microsoft.AnalysisServices.AdomdServer.Set

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

Sintaxe

'Declaração
Public NotInheritable Class Set _
    Implements IEnumerable, IDisposable
'Uso
Dim instance As Set
public sealed class Set : IEnumerable, IDisposable
public ref class Set sealed : IEnumerable, 
    IDisposable
[<SealedAttribute>]
type Set =  
    class 
        interface IEnumerable 
        interface IDisposable 
    end
public final class Set implements IEnumerable, IDisposable

O tipo Set expõe os membros a seguir.

Propriedades

  Nome Descrição
Propriedade pública Hierarchies Gets a reference to the HierarchyCollection collection referenced by the Set.
Propriedade pública Tuples Gets a reference to the TupleCollection collection referenced by the Set.

Início

Métodos

  Nome Descrição
Método público {dtor} Releases all resources used by the Set.
Método público Dispose Releases all resources used by the Set.
Método público Equals (Herdado de Object.)
Método público GetEnumerator() Gets an instance of the Enumerator class for iterating through the collection.
Método protegido GetEnumerator() Gets an enumerator that iterates through the collection.
Método público GetHashCode (Herdado de Object.)
Método público GetType (Herdado de Object.)
Método público ToString (Herdado de Object.)

Início

Comentários

A set is an ordered collection of zero or more tuples. A set is most commonly used to define axes in a multidimensional query. Like tuples, sets also have dimensionality. Because a set is composed of tuples, the dimensionality of a set is expressed by the dimensionality of each tuple within it. Therefore, tuples within a set must have the same dimensionality.

In ADOMD.NET, the Set class encapsulates the basic information used to define a set. The Set class is used primarily to represent an axis within the Axes collection of a CellSet. The dimensionality of a set is represented by the Hierarchies collection within the Set class, which identifies the nesting order of hierarchies within a given axis for a CellSet.

Segurança de thread

Qualquer membro público static (Shared no Visual Basic) desse tipo é seguro para threads. Não há garantia de que qualquer membro de instância seja seguro para threads.

Consulte também

Referência

Namespace Microsoft.AnalysisServices.AdomdServer