Udostępnij za pośrednictwem


Właściwość VSProject.References —

Pobiera References kolekcji dla projektu.Tylko do odczytu.

Przestrzeń nazw:  VSLangProj
Zestaw:  VSLangProj (w VSLangProj.dll)

Składnia

'Deklaracja
ReadOnly Property References As References
References References { get; }
property References^ References {
    References^ get ();
}
abstract References : References with get
function get References () : References

Wartość właściwości

Typ: VSLangProj.References
A References kolekcji zawierających Reference obiektów, każdy z nich reprezentujących odwołanie.

Uwagi

Aby napisać kod zewnętrzny składnik projektu najpierw muszą zawierać odniesienie do tego składnika.Można odnieść się do trzech typów składników:.NET, zespoły, serwery automatyzacji COM i formanty i inne projekty w ramach tego samego roztworu ujawniające składników.

Przykłady

[Programu Visual Basic]

' Macro Editor
' Assuming that the first project in the solution is a Visual Basic or C#
' application, this routine lists the references in the project.
Imports VSLangProj
Sub ListReferences()
   ' Retrieve the VSProject object.
   Dim theVSProject As VSProject = _
      CType(DTE.Solution.Projects.Item(1).Object, VSProject)

   ' Retrieve the references collection.
   Dim refs As References = theVSProject.References

   ' Create a string list of the reference names.
   Dim refList As String = ""
   Dim aRef As Reference
   For Each aRef In refs
      refList &= aRef.Identity & ControlChars.CrLf
   Next
   MsgBox(refList)
End Sub

Zabezpieczenia programu .NET Framework

Zobacz też

Informacje

VSProject Interfejs

Przestrzeń nazw VSLangProj