CellSet Class
Represents a cellset that is returned as a result of a query.
Espacio de nombres: Microsoft.AnalysisServices.AdomdClient
Ensamblado: Microsoft.AnalysisServices.AdomdClient (in microsoft.analysisservices.adomdclient.dll)
Sintaxis
'Declaración
<DefaultMemberAttribute("Item")> _
Public NotInheritable Class CellSet
[DefaultMemberAttribute("Item")]
public sealed class CellSet
[DefaultMemberAttribute(L"Item")]
public ref class CellSet sealed
/** @attribute DefaultMemberAttribute("Item") */
public final class CellSet
DefaultMemberAttribute("Item")
public final class CellSet
Notas
In ADOMD.NET, the CellSet encapsulates a multidimensional result set that is the result of running a command. A multidimensional result set contains a discrete collection of data points, or cells, that are organized along multiple dimensions, or axes.
A CellSet is created when the Execute or ExecuteCellSet method of the AdomdCommand is called to run a command.
Inheritance Hierarchy
System.Object
Microsoft.AnalysisServices.AdomdClient.CellSet
Ejemplo
The following subroutine, given a CellSet, examines and displays information about the object:
Public Sub ListCellSetInfo(ByRef CellSetToCheck As CellSet)
If CellSetToCheck Is Nothing Then
Throw New System.ArgumentNullException("CellSetToCheck")
Else
Console.WriteLine("The cellset has {0} cells " & _
"organized along {1} axes.", _
CellSetToCheck.Cells.Count, _
CellSetToCheck.Axes.Count)
End If
End Sub
Seguridad para subprocesos
Any public static (Shared in Microsoft Visual Basic) members of this type are thread safe. Any instance members are not guaranteed to be thread safe.
Plataformas
Plataformas de desarrollo
Para obtener una lista de las plataformas compatibles, vea Requisitos de hardware y software para instalar SQL Server 2005.
Plataformas de destino
Para obtener una lista de las plataformas compatibles, vea Requisitos de hardware y software para instalar SQL Server 2005.
Vea también
Referencia
CellSet Members
Microsoft.AnalysisServices.AdomdClient Namespace