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