VSProjectEvents2.ReferencesEvents – vlastnost
Získává ReferencesEvents objekt, který poskytuje přístup k událostí References kolekce.
Obor názvů: VSLangProj80
Sestavení: VSLangProj80 (v VSLangProj80.dll)
Syntaxe
'Deklarace
ReadOnly Property ReferencesEvents As ReferencesEvents
Get
ReferencesEvents ReferencesEvents { get; }
property ReferencesEvents^ ReferencesEvents {
ReferencesEvents^ get ();
}
abstract ReferencesEvents : ReferencesEvents
function get ReferencesEvents () : ReferencesEvents
Hodnota vlastnosti
Typ: VSLangProj.ReferencesEvents
Vrátí ReferencesEvents objektu.
Implementuje
VSProjectEvents.ReferencesEvents
Poznámky
ReferencesEvents Vlastnost poskytuje přístup ke třem událostem: ReferenceAdded, ReferenceChanged a ReferenceRemoved.
Příklady
Tento příklad připojení pomocí metody zpracování události pro konkrétní projekt ReferencesEvents vlastnost. Další informace o spuštění makra vzorky naleznete How to: Compile and Run the Automation Object Model Code Examples.
Otevřít Visual Basic, Visual C#, nebo Visual J# projektu před spuštěním makra.
' Macro Editor
' Connects trivial methods to the ReferenceAdded and ReferenceDeleted
' events of the first project in the solution.
Imports VSLangProj
Imports VSLangProj80
Sub ConnectEvents()
Dim proj As Project = DTE.Solution.Projects.Item(1)
Dim vsproj As VSProject2 = CType(proj.Object, VSProject2)
Dim refEvents As ReferencesEvents = vsproj.Events.ReferencesEvents
AddHandler refEvents.ReferenceAdded, AddressOf ReferenceAdded
AddHandler refEvents.ReferenceRemoved, AddressOf ReferenceRemoved
AddHandler refEvents.ReferenceChanged, AddressOf ReferenceChanged
End Sub
Sub ReferenceRemoved(ByVal removedRef As Reference)
MsgBox("The reference for " & removedRef.Name & " was removed.")
End Sub
Sub ReferenceChanged(ByVal removedRef As Reference)
MsgBox("The reference for " & removedRef.Name & " was changed.")
End Sub
Sub ReferenceAdded(ByVal addedRef As Reference)
MsgBox("The reference for " & addedRef.Name & " was added.")
End Sub
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.