Find Método
Gets the specified Property from the PropertyCollection collection by its name.
Espacio de nombres: Microsoft.AnalysisServices.AdomdClient
Ensamblado: Microsoft.AnalysisServices.AdomdClient (en Microsoft.AnalysisServices.AdomdClient.dll)
Sintaxis
'Declaración
Public Function Find ( _
name As String _
) As Property
'Uso
Dim instance As PropertyCollection
Dim name As String
Dim returnValue As [Property]
returnValue = instance.Find(name)
public Property Find(
string name
)
public:
Property^ Find(
String^ name
)
member Find :
name:string -> Property
public function Find(
name : String
) : Property
Parámetros
- name
Tipo: System. . :: . .String
The name of the Property to find.
Valor devuelto
Tipo: Microsoft.AnalysisServices.AdomdClient. . :: . .Property
The Property with the name name.
Comentarios
If the object is not found, the Find method returns null, whereas the Item property throws an exception.
Vea también