MiningStructureCollection.Item 속성 (String)
Gets the specified MiningStructure from the MiningStructureCollection collection by using the structure's name. In Microsoft Visual C#, this property is the indexer for the MiningStructureCollection class.
네임스페이스: Microsoft.AnalysisServices.AdomdServer
어셈블리: msmgdsrv(msmgdsrv.dll)
구문
‘선언
Public ReadOnly Default Property Item ( _
name As String _
) As MiningStructure
Get
‘사용 방법
Dim instance As MiningStructureCollection
Dim name As String
Dim value As MiningStructure
value = instance(name)
public MiningStructure this[
string name
] { get; }
public:
property MiningStructure^ default[String^ name] {
MiningStructure^ get (String^ name);
}
member Item : MiningStructure
Jscript는 인덱싱된 속성의 사용을 지원하지만 새로운 인덱싱된 속성 선언은 지원하지 않습니다.
매개 변수
- name
유형: System.String
The name of the MiningStructure to be found.
속성 값
유형: Microsoft.AnalysisServices.AdomdServer.MiningStructure
The MiningStructure with the specified name.
주의
If the object is not found, the Item property throws an exception. However, the Find method returns null if the object is not found.