Класс CellSet
Represents a cellset that is returned as a result of a query.
Пространство имен: Microsoft.AnalysisServices.AdomdClient
Сборка: Microsoft.AnalysisServices.AdomdClient (в Microsoft.AnalysisServices.AdomdClient.dll)
Синтаксис
'Декларация
Public NotInheritable Class CellSet
'Применение
Dim instance As CellSet
public sealed class CellSet
public ref class CellSet sealed
[<SealedAttribute>]
type CellSet = class end
public final class CellSet
Замечания
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.
Примеры
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
Иерархия наследования
System. . :: . .Object
Microsoft.AnalysisServices.AdomdClient..::..CellSet
Потоковая защита
Все открытые статический (Shared в Visual Basic) элементы этого типа потокобезопасны. Потокобезопасность элементов экземпляров не гарантируется.