BuildDependency.Collection – vlastnost
Vrátí BuildDependencies obsahující kolekce BuildDependency objekt podporující vlastnost.
Obor názvů: EnvDTE
Sestavení: EnvDTE (v EnvDTE.dll)
Syntaxe
'Deklarace
ReadOnly Property Collection As BuildDependencies
Get
BuildDependencies Collection { get; }
property BuildDependencies^ Collection {
BuildDependencies^ get ();
}
abstract Collection : BuildDependencies
function get Collection () : BuildDependencies
Hodnota vlastnosti
Typ: EnvDTE.BuildDependencies
A BuildDependencies kolekce.
Příklady
public void Example(DTE2 dte, AddIn addin)
{
try
{
// Make sure there is at least one BuildDependency in your
// solution to run this code.
BuildDependencies bldDepends;
BuildDependency bldDependency = null;
bldDepends = dte.Solution.SolutionBuild.BuildDependencies;
if (bldDepends.Count > 0)
bldDependency = bldDepends.Item(bldDepends.Count);
//
if (bldDependency.Collection.Count > 0)
MessageBox.Show(bldDependency.DTE.Name);
}
catch (Exception ex)
{
MessageBox.Show(ex.Message);
}
}
Zabezpečení rozhraní .NET Framework
- Plná důvěra přímému volajícímu. Částečně zabezpečený kód nemůže tento člen použít. Další informace naleznete v tématu Používání knihoven z částečně důvěryhodného kódu.
Viz také
Odkaz
Další zdroje
How to: Compile and Run the Automation Object Model Code Examples