NamedSetCollection クラス
CubeDef に含まれる NamedSet オブジェクトの読み取り専用の要求時コレクションを取得します。
継承階層
System.Object
Microsoft.AnalysisServices.AdomdClient.NamedSetCollection
名前空間: Microsoft.AnalysisServices.AdomdClient
アセンブリ: Microsoft.AnalysisServices.AdomdClient (Microsoft.AnalysisServices.AdomdClient.dll)
構文
'宣言
Public NotInheritable Class NamedSetCollection _
Implements ICollection, IEnumerable
'使用
Dim instance As NamedSetCollection
public sealed class NamedSetCollection : ICollection,
IEnumerable
public ref class NamedSetCollection sealed : ICollection,
IEnumerable
[<SealedAttribute>]
type NamedSetCollection =
class
interface ICollection
interface IEnumerable
end
public final class NamedSetCollection implements ICollection, IEnumerable
NamedSetCollection 型は、以下のメンバーを公開しています。
プロパティ
名前 | 説明 | |
---|---|---|
Count | コレクションに含まれる NamedSet オブジェクトの数を取得します。 | |
IsSynchronized | コレクションへのアクセスが同期されるかどうか (スレッドセーフかどうか) を示す値を取得します。 | |
Item[Int32] | 指定したインデックスの NamedSet をコレクションから取得します。C# の場合、このプロパティは NamedSetCollection クラスのインデクサーとなります。 | |
Item[String] | 指定した名前の NamedSet をコレクションから取得します。C# の場合、このプロパティは NamedSetCollection クラスのインデクサーとなります。 | |
SyncRoot | コレクションへのアクセスの同期に使用できる Object を取得します。 |
先頭に戻る
メソッド
名前 | 説明 | |
---|---|---|
CopyTo | 指定した配列にコレクションの要素をコピーします。 | |
Equals | (Object から継承されています。) | |
Find | 指定した NamedSet をコレクションから取得します。 | |
GetEnumerator | コレクションの反復処理に使用する Enumerator を取得します。 | |
GetHashCode | (Object から継承されています。) | |
GetType | (Object から継承されています。) | |
ToString | (Object から継承されています。) |
先頭に戻る
明示的なインターフェイスの実装
名前 | 説明 | |
---|---|---|
ICollection.CopyTo | 特定の配列インデックスを開始位置として、指定した配列に NamedSetCollection の要素をコピーします。 | |
IEnumerable.GetEnumerator | NamedSetCollection を反復処理する列挙子を取得します。 |
先頭に戻る
使用例
次のサブルーチンでは、CubeDef を受け取り、NamedSetCollection コレクションの繰り返し処理を実行し、各名前付きセットの情報を表示します。
Public Sub ListNamedSetCollection(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 NamedSetCollection collection of the
' CubeDef object.
Try
Dim nsetToCheck As NamedSet
Debug.WriteLine("Found " & CubeToCheck.NamedSets.Count & _
" named set(s) in cube:")
For Each nsetToCheck In CubeToCheck.NamedSets
Debug.WriteLine("Named Set: " & nsetToCheck.Name)
Debug.WriteLine(" Description: " & _
nsetToCheck.Description)
Debug.WriteLine(" Expression: " & _
nsetToCheck.Expression)
Next
Catch e As System.Exception
Debug.WriteLine(e)
End Try
End If
End Sub
スレッド セーフ
この型の public static (Visual Basic では Shared) のメンバーはすべて、スレッド セーフです。インスタンス メンバーの場合は、スレッド セーフであるとは限りません。