Méthode Find
Gets the specified Property from the PropertyCollection collection by its name.
Espace de noms : Microsoft.AnalysisServices.AdomdServer
Assembly : msmgdsrv (en msmgdsrv.dll)
Syntaxe
'Déclaration
Public Function Find ( _
name As String _
) As Property
'Utilisation
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
Paramètres
- name
Type : System. . :: . .String
The name of the Property to find.
Valeur de retour
Type : Microsoft.AnalysisServices.AdomdServer. . :: . .Property
The Property with the name name.
Notes
If the object is not found, the Find method returns null, whereas the Item property throws an exception.
Voir aussi