次の方法で共有


TupleCollection クラス

Set に含まれる Tuple オブジェクトの読み取り専用のコレクションを取得します。

継承階層

System. . :: . .Object
  Microsoft.AnalysisServices.AdomdClient..::..TupleCollection

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

構文

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

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

プロパティ

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

先頭に戻る

メソッド

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

先頭に戻る

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

  名前 説明
明示的なインターフェイスの実装プライベート メソッド ICollection. . :: . .CopyTo
明示的なインターフェイスの実装プライベート メソッド IEnumerable. . :: . .GetEnumerator

先頭に戻る

使用例

次のサブルーチンでは、CellSet および情報を表示するセルの総数を受け取り、Tuples コレクションの繰り返し処理を実行して、各組に対する情報を表示します。

Public Sub ListTupleCollection(ByRef AxisToCheck As Axis, _
    Optional ByVal Count As Integer = 10)

    ' Because a Set object can represent thousands of tuples,
    ' the Count parameter limits the output to a 
    ' specified number of cells.

    ' Check the parameter before performing actions on it.
    If AxisToCheck Is Nothing Then
        Throw New System.ArgumentNullException("AxisToCheck")
    Else
        ' Iterate through the Tuples collection of the
        ' Set object. 
        Try
            Dim tupleToCheck As Tuple
            Dim tupleCount As Integer
            Dim tupleIndex As Integer

            tupleCount = AxisToCheck.Set.Tuples.Count

            Debug.WriteLine("Found " & tupleCount & _
                " tuple(s) in axis:")

            If tupleCount > Count Then tupleCount = Count
            If tupleCount > 0 Then
                For tupleIndex = 0 To tupleCount
                    tupleToCheck = AxisToCheck.Set.Tuples(tupleIndex)
                    Debug.WriteLine("Tuple: " & _
                        tupleToCheck.TupleOrdinal)
                    Debug.WriteLine("  No. of members:    " & _
                        tupleToCheck.Members.Count)
                Next
            End If
        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) のメンバーはすべて、スレッド セーフです。インスタンス メンバーの場合は、スレッド セーフであるとは限りません。