PropertyCollection.Enumerator.Current プロパティ
PropertyCollection 内の現在の Property を取得します。
名前空間: Microsoft.AnalysisServices.AdomdServer
アセンブリ: msmgdsrv (msmgdsrv.dll)
構文
'宣言
Public ReadOnly Property Current As Property
Get
'使用
Dim instance As PropertyCollection.Enumerator
Dim value As [Property]
value = instance.Current
public Property Current { get; }
public:
property Property^ Current {
Property^ get ();
}
member Current : Property
function get Current () : Property
プロパティ値
型: Microsoft.AnalysisServices.AdomdServer.Property
列挙子がコレクションの末尾に達していない場合は、PropertyCollection 内にある Property です。
例外
例外 | 条件 |
---|---|
[InvalidOperationException] | 列挙子は現在、PropertyCollection 内の最初の Property の前、または最後の Property の後にあります。 この例外の詳細については、「InvalidOperationException Class」を参照してください。 |
説明
列挙子を作成した後や Reset を実行した後は、Current の値を読み取る前に MoveNext を呼び出して、列挙子をコレクションの先頭の要素に進めておく必要があります。 そうしないと、Current は未定義となります。