WebSiteMiscEvents 接口
表示 VSWebSite 对象的事件。 使用此类可访问 WebSiteMiscEventsClass 提供的功能。
命名空间: VsWebSite
程序集: VsWebSite.Interop(在 VsWebSite.Interop.dll 中)
语法
声明
<GuidAttribute("9D9D4002-3258-4EBB-BF58-AF62C3890990")> _
Public Interface WebSiteMiscEvents _
Inherits _WebSiteMiscEvents, _dispWebSiteMiscEvents_Event
[GuidAttribute("9D9D4002-3258-4EBB-BF58-AF62C3890990")]
public interface WebSiteMiscEvents : _WebSiteMiscEvents,
_dispWebSiteMiscEvents_Event
[GuidAttribute(L"9D9D4002-3258-4EBB-BF58-AF62C3890990")]
public interface class WebSiteMiscEvents : _WebSiteMiscEvents,
_dispWebSiteMiscEvents_Event
[<GuidAttribute("9D9D4002-3258-4EBB-BF58-AF62C3890990")>]
type WebSiteMiscEvents =
interface
interface _WebSiteMiscEvents
interface _dispWebSiteMiscEvents_Event
end
public interface WebSiteMiscEvents extends _WebSiteMiscEvents, _dispWebSiteMiscEvents_Event
WebSiteMiscEvents 类型公开以下成员。
方法
名称 | 说明 | |
---|---|---|
add_OnAfterFolderRefresh | 基础结构。此方法支持 .NET Framework 基础结构,但不应在代码中直接使用。 (继承自 _dispWebSiteMiscEvents_Event。) | |
add_OnBeforeFolderRefresh | 基础结构。此方法支持 .NET Framework 基础结构,但不应在代码中直接使用。 (继承自 _dispWebSiteMiscEvents_Event。) | |
remove_OnAfterFolderRefresh | 基础结构。此方法支持 .NET Framework 基础结构,但不应在代码中直接使用。 (继承自 _dispWebSiteMiscEvents_Event。) | |
remove_OnBeforeFolderRefresh | 基础结构。此方法支持 .NET Framework 基础结构,但不应在代码中直接使用。 (继承自 _dispWebSiteMiscEvents_Event。) |
页首
事件
名称 | 说明 | |
---|---|---|
OnAfterFolderRefresh | 基础结构。此事件支持 .NET Framework 基础结构,但不应在代码中直接使用。 (继承自 _dispWebSiteMiscEvents_Event。) | |
OnBeforeFolderRefresh | 基础结构。此事件支持 .NET Framework 基础结构,但不应在代码中直接使用。 (继承自 _dispWebSiteMiscEvents_Event。) |
页首
备注
使用 WebSiteMiscEvents 属性可获取 WebSiteMiscEventsClass 对象的此接口。
提示
此类提供的功能在从 Visual Studio 2005 起的各个 Visual Studio 版本中均可用。 它在 Visual Web Developer 速成版中不可用。
示例
下面的宏代码示例演示如何通过开发工具扩展 (DTE) 对象来创建对当前 VSWebSite 对象的引用,以及如何订阅事件。 此示例摘自一个更大的 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 MiscEvents As _
VsWebSite.WebSiteMiscEvents