Interfejs AssemblyReferencesEvents
Reprezentuje zdarzenia dla References właściwość VSWebSite obiektu.Użyj tej klasy dostęp do funkcji dostarczonych przez AssemblyReferencesEventsClass.
Przestrzeń nazw: VsWebSite
Zestaw: VsWebSite.Interop (w VsWebSite.Interop.dll)
Składnia
'Deklaracja
<GuidAttribute("E5E56972-0CFE-49B7-9EFB-923613FDA978")> _
Public Interface AssemblyReferencesEvents _
Inherits _AssemblyReferencesEvents, _dispAssemblyReferencesEvents_Event
[GuidAttribute("E5E56972-0CFE-49B7-9EFB-923613FDA978")]
public interface AssemblyReferencesEvents : _AssemblyReferencesEvents,
_dispAssemblyReferencesEvents_Event
[GuidAttribute(L"E5E56972-0CFE-49B7-9EFB-923613FDA978")]
public interface class AssemblyReferencesEvents : _AssemblyReferencesEvents,
_dispAssemblyReferencesEvents_Event
[<GuidAttribute("E5E56972-0CFE-49B7-9EFB-923613FDA978")>]
type AssemblyReferencesEvents =
interface
interface _AssemblyReferencesEvents
interface _dispAssemblyReferencesEvents_Event
end
public interface AssemblyReferencesEvents extends _AssemblyReferencesEvents, _dispAssemblyReferencesEvents_Event
Typ AssemblyReferencesEvents uwidacznia następujące elementy członkowskie.
Metody
Nazwa | Opis | |
---|---|---|
add_AssemblyReferenceAdded | Infrastruktura. Ta metoda obsługuje.NET Framework i nie jest przeznaczony do użycia bezpośrednio w kodzie. (Odziedziczone z _dispAssemblyReferencesEvents_Event). | |
add_AssemblyReferenceRemoved | Infrastruktura. Ta metoda obsługuje.NET Framework i nie jest przeznaczony do użycia bezpośrednio w kodzie. (Odziedziczone z _dispAssemblyReferencesEvents_Event). | |
remove_AssemblyReferenceAdded | Infrastruktura. Ta metoda obsługuje.NET Framework i nie jest przeznaczony do użycia bezpośrednio w kodzie. (Odziedziczone z _dispAssemblyReferencesEvents_Event). | |
remove_AssemblyReferenceRemoved | Infrastruktura. Ta metoda obsługuje.NET Framework i nie jest przeznaczony do użycia bezpośrednio w kodzie. (Odziedziczone z _dispAssemblyReferencesEvents_Event). |
Początek
Zdarzenia
Nazwa | Opis | |
---|---|---|
AssemblyReferenceAdded | Infrastruktura. To zdarzenie obsługuje.NET Framework i nie jest przeznaczony do użycia bezpośrednio w kodzie. (Odziedziczone z _dispAssemblyReferencesEvents_Event). | |
AssemblyReferenceRemoved | Infrastruktura. To zdarzenie obsługuje.NET Framework i nie jest przeznaczony do użycia bezpośrednio w kodzie. (Odziedziczone z _dispAssemblyReferencesEvents_Event). |
Początek
Uwagi
Użyj AssemblyReferencesEvents właściwość, aby uzyskać ten interfejs AssemblyReferencesEventsClass obiektu.
[!UWAGA]
Funkcji tej klasy jest dostępna w wersji programu Visual Studio, począwszy od programu Visual Studio 2005.Nie jest dostępny w Visual Web Developer Express Edition.
Przykłady
Poniższy przykład kodu makra pokazuje jak utworzyć odwołania do bieżącego VSWebSite obiektu za pomocą środowiska czasu projektowania (DTE) i subskrybować zdarzenie.Próbka ta jest częścią większej próbki kodu dla VSWebSiteEvents.
' Initialize the VsWebSite and the Events
Sub InitAssemblyRefsEvents()
' Get a reference to the first Web site
' in the current solution
Dim ws As VsWebSite.VSWebSite = _
DTE.Solution.Projects.Item(1).Object
' Attach the Web site events to module events
AssemblyRefsEvents = _
ws.VSWebSiteEvents.AssemblyReferencesEvents
End Sub
' Declare the event
' The macro IDE requires the attribute
' in order to trap the events
<System.ContextStaticAttribute()> _
Public WithEvents AssemblyRefsEvents As _
VsWebSite.AssemblyReferencesEvents