次の方法で共有


DimensionCollection クラス

CubeDef に含まれる Dimension オブジェクトの読み取り専用の要求時コレクションを含みます。

継承階層

System.Object
  Microsoft.AnalysisServices.AdomdClient.DimensionCollection

名前空間:  Microsoft.AnalysisServices.AdomdClient
アセンブリ:  Microsoft.AnalysisServices.AdomdClient (Microsoft.AnalysisServices.AdomdClient.dll)

構文

'宣言
Public NotInheritable Class DimensionCollection _
    Implements ICollection, IEnumerable
'使用
Dim instance As DimensionCollection
public sealed class DimensionCollection : ICollection, 
    IEnumerable
public ref class DimensionCollection sealed : ICollection, 
    IEnumerable
[<SealedAttribute>]
type DimensionCollection =  
    class 
        interface ICollection 
        interface IEnumerable 
    end
public final class DimensionCollection implements ICollection, IEnumerable

DimensionCollection 型は、以下のメンバーを公開しています。

プロパティ

  名前 説明
パブリック プロパティ Count コレクションに含まれる Dimension オブジェクトの数を取得します。
パブリック プロパティ IsSynchronized コレクションへのアクセスが同期されるかどうか (スレッドセーフかどうか) を示す値を取得します。
パブリック プロパティ Item[Int32] 指定したインデックスの Dimension をコレクションから取得します。C# の場合、このプロパティは DimensionCollection クラスのインデクサーとなります。
パブリック プロパティ Item[String] 指定した名前の Dimension をコレクションから取得します。C# の場合、このプロパティは DimensionCollection クラスのインデクサーとなります。
パブリック プロパティ SyncRoot コレクションへのアクセスの同期に使用できるオブジェクトを取得します。

先頭に戻る

メソッド

  名前 説明
パブリック メソッド CopyTo 指定した配列にコレクションの要素をコピーします。
パブリック メソッド Equals (Object から継承されています。)
パブリック メソッド Find 指定した名前の Dimension をコレクションから取得します。
パブリック メソッド GetEnumerator コレクションの反復処理に使用する Enumerator を取得します。
パブリック メソッド GetHashCode (Object から継承されています。)
パブリック メソッド GetType (Object から継承されています。)
パブリック メソッド ToString (Object から継承されています。)

先頭に戻る

明示的なインターフェイスの実装

  名前 説明
明示的なインターフェイスの実装プライベート メソッド ICollection.CopyTo 特定の配列インデックスを開始位置として、配列に DimensionCollection の要素をコピーします。
明示的なインターフェイスの実装プライベート メソッド IEnumerable.GetEnumerator DimensionCollection の反復処理に使用する列挙子を取得します。

先頭に戻る

使用例

次のサブルーチンでは、CubeDef を受け取り、DimensionCollection コレクションの繰り返し処理を実行し、各ディメンションの情報を表示します。

Public Sub ListDimensionCollection(ByRef CubeToCheck As CubeDef)

    ' Check the parameter before performing actions on it.
    If CubeToCheck Is Nothing Then
        Throw New System.ArgumentNullException("CubeToCheck")
    Else
        ' Iterate through the Dimensions collection of the
        ' CubeDef object.

        Try
            Dim dimToCheck As Dimension

            Debug.WriteLine("Found " & CubeToCheck.Dimensions.Count & _
                " dimensions in cube:")

            For Each dimToCheck In CubeToCheck.Dimensions
                Debug.WriteLine("Dimension:  " & dimToCheck.Name)
                Debug.WriteLine("  Caption:        " & _
                    dimToCheck.Caption)
                Debug.WriteLine("  Description:    " & _
                    dimToCheck.Description)
                Debug.WriteLine("  UniqueName:     " & _
                    dimToCheck.UniqueName)
                Debug.WriteLine("  The dimension " & _
                    IIf(dimToCheck.WriteEnabled = True, "is", "is not") & _
                    " write-enabled.")
            Next
        Catch ex As AdomdConnectionException
            ' The connection could not be opened or was disconnected.
            ' This error can occur at any time, if the provider is 
            ' disconnected from the server.
            Debug.WriteLine(ex)
            Throw ex
        Catch ex As AdomdErrorResponseException
            ' A response is received from a provider which indicates an error.
            Debug.WriteLine(ex)
            Throw ex
        Catch ex As AdomdUnknownResponseException
            ' A response has been returned from the provider that 
            ' was not understood.
            Debug.WriteLine(ex)
            Throw ex
        Catch ex As AdomdCacheExpiredException
            ' A cached version of an ADOMD.NET object is no longer valid.
            ' This error is typically raised when reviewing metadata.
            Debug.WriteLine(ex)
            Throw ex
        Catch ex As AdomdException
            ' Any other error raised by ADOMD.NET.
            Debug.WriteLine(ex)
            Throw ex
        Catch ex As Exception
            ' Any other error.
            Debug.WriteLine(ex)
            Throw ex
        End Try
    End If
End Sub

スレッド セーフ

この型の public static (Visual Basic では Shared) のメンバーはすべて、スレッド セーフです。インスタンス メンバーの場合は、スレッド セーフであるとは限りません。

関連項目

参照

Microsoft.AnalysisServices.AdomdClient 名前空間