BuildDependencies.Item, méthode
Obtient un membre indexé d'une collection BuildDependencies.
Espace de noms : EnvDTE
Assembly : EnvDTE (dans EnvDTE.dll)
Syntaxe
'Déclaration
Function Item ( _
index As Object _
) As BuildDependency
BuildDependency Item(
Object index
)
BuildDependency^ Item(
[InAttribute] Object^ index
)
abstract Item :
index:Object -> BuildDependency
function Item(
index : Object
) : BuildDependency
Paramètres
- index
Type : System.Object
Obligatoire.L'index de l'élément à retourner.
Valeur de retour
Type : EnvDTE.BuildDependency
Objet BuildDependency.
Notes
La méthode Item lève une exception ArgumentException si la collection ne peut pas trouver l'objet correspondant à la valeur d'index.
Exemples
public void Example(DTE2 dte)
{
try
{
BuildDependencies bldDepends;
BuildDependency bldDependency = null;
// Get the BuildDependencies in open solution.
bldDepends = dte.Solution.SolutionBuild.BuildDependencies;
if (bldDepends.Count > 0) // assign the BuildDependency
bldDependency = bldDepends.Item(bldDepends.Count);
// Show the BuildDependency returned by the Item property.
MessageBox.Show(bldDependency.Project.Name);
// Show the BuildDependencies top-level object.
MessageBox.Show(bldDepends.DTE.Name);
}
catch (Exception ex)
{
MessageBox.Show(ex.Message);
}
}
Sécurité .NET Framework
- Confiance totale accordée à l'appelant immédiat. Ce membre ne peut pas être utilisé par du code d'un niveau de confiance partiel. Pour plus d'informations, consultez Utilisation de bibliothèques à partir de code d'un niveau de confiance partiel.
Voir aussi
Référence
Autres ressources
Comment : compiler et exécuter les exemples de code du modèle objet Automation