CellSet 클래스
Represents a cellset that is returned as a result of a query.
네임스페이스: Microsoft.AnalysisServices.AdomdClient
어셈블리: Microsoft.AnalysisServices.AdomdClient.dll의 Microsoft.AnalysisServices.AdomdClient
구문
‘선언
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
스레드로부터의 안전성
이 형식의 모든 공용 static(Visual Basic에서는 Shared) 멤버는 스레드로부터 안전합니다. 인스턴스 멤버는 스레드로부터의 안전성이 보장되지 않습니다.