Interface AssemblyReferencesEvents
Representa os eventos para o References propriedade de um VSWebSite objeto. Usar esta classe para acessar a funcionalidade fornecida pelo AssemblyReferencesEventsClass.
Namespace: VsWebSite
Assembly: VsWebSite.Interop (em VsWebSite.Interop.dll)
Sintaxe
'Declaração
<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
O tipo AssemblyReferencesEvents expõe os membros a seguir.
Métodos
Nome | Descrição | |
---|---|---|
add_AssemblyReferenceAdded | Infraestrutura. This method supports the .NET Framework infrastructure and is not intended to be used directly from your code. (Herdado de _dispAssemblyReferencesEvents_Event.) | |
add_AssemblyReferenceRemoved | Infraestrutura. This method supports the .NET Framework infrastructure and is not intended to be used directly from your code. (Herdado de _dispAssemblyReferencesEvents_Event.) | |
remove_AssemblyReferenceAdded | Infraestrutura. This method supports the .NET Framework infrastructure and is not intended to be used directly from your code. (Herdado de _dispAssemblyReferencesEvents_Event.) | |
remove_AssemblyReferenceRemoved | Infraestrutura. This method supports the .NET Framework infrastructure and is not intended to be used directly from your code. (Herdado de _dispAssemblyReferencesEvents_Event.) |
Início
Eventos
Nome | Descrição | |
---|---|---|
AssemblyReferenceAdded | Infraestrutura. Este evento dá suporte a.NET Framework e não se destina a ser usado diretamente em seu código. (Herdado de _dispAssemblyReferencesEvents_Event.) | |
AssemblyReferenceRemoved | Infraestrutura. Este evento dá suporte a.NET Framework e não se destina a ser usado diretamente em seu código. (Herdado de _dispAssemblyReferencesEvents_Event.) |
Início
Comentários
Use o AssemblyReferencesEvents propriedade para obter esta interface para o AssemblyReferencesEventsClass objeto.
Observação |
---|
A funcionalidade fornecida por esta classe está disponível nas versões do Visual Studio, começando com Visual Studio de 2005. Ele não está disponível no Visual Web Developer Express Edition. |
Exemplos
O exemplo de código de macro a seguir mostra como criar uma referência ao atual VSWebSite de objetos no ambiente de tempo de design (DTE) e se inscrever em um evento. Esse exemplo é parte de uma amostra de código maior para 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