MiningAttributeCollection.Enumerator.Current 属性
获取 MiningAttributeCollection 中的当前 MiningAttribute。
命名空间: Microsoft.AnalysisServices.AdomdServer
程序集: msmgdsrv(在 msmgdsrv.dll 中)
语法
声明
Public ReadOnly Property Current As MiningAttribute
Get
用法
Dim instance As MiningAttributeCollection.Enumerator
Dim value As MiningAttribute
value = instance.Current
public MiningAttribute Current { get; }
public:
virtual property MiningAttribute^ Current {
MiningAttribute^ get () sealed;
}
abstract Current : MiningAttribute
override Current : MiningAttribute
final function get Current () : MiningAttribute
属性值
类型:Microsoft.AnalysisServices.AdomdServer.MiningAttribute
MiningAttributeCollection 中的 MiningAttribute(如果枚举器尚未通过集合的末尾)。
异常
异常 | 条件 |
---|---|
InvalidOperationException | 枚举器当前在 MiningAttributeCollection 中的第一个 MiningAttribute 之前或最后一个该对象之后。 |
注释
在创建一个枚举器后或在 Reset 后,在读取 Current 值之前必须调用 MoveNext 以将该枚举器前进到集合的第一个元素;否则无法定义 Current。