MiningModelColumnCollection.Item Propiedad (String)
Gets the specified MiningModelColumn from the collection by its name.
Espacio de nombres: Microsoft.AnalysisServices.AdomdClient
Ensamblado: Microsoft.AnalysisServices.AdomdClient (en Microsoft.AnalysisServices.AdomdClient.dll)
Sintaxis
'Declaración
Public ReadOnly Default Property Item ( _
index As String _
) As MiningModelColumn
Get
'Uso
Dim instance As MiningModelColumnCollection
Dim index As String
Dim value As MiningModelColumn
value = instance(index)
public MiningModelColumn this[
string index
] { get; }
public:
property MiningModelColumn^ default[String^ index] {
MiningModelColumn^ get (String^ index);
}
member Item : MiningModelColumn
JScript admite el uso de propiedades indizadas, pero no la declaración de otras nuevas.
Parámetros
- index
Tipo: System.String
The name of the MiningModelColumn to find.
Valor de la propiedad
Tipo: Microsoft.AnalysisServices.AdomdClient.MiningModelColumn
The MiningModelColumn with the specified name.
Excepciones
Excepción | Condición |
---|---|
AdomdErrorResponseException | The provider returned an error in response. |
AdomdUnknownResponseException | The provider sent an unrecognizable response. |
AdomdConnectionException | The connection was broken. |
System.InvalidOperationException | The MiningModelColumn was not found in the collection. |
Comentarios
In Microsoft Visual C#, this property is the indexer for the MiningModelColumnCollection class.