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 之前或最后一个该对象之后。 有关此异常的详细信息,请参阅 InvalidOperationException Class。 |
注释
在创建一个枚举器后或 Reset 后,在读取 Current 值之前必须调用 MoveNext 以将该枚举器前进到集合的第一个元素。 否则,无法定义 Current。