次の方法で共有


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 から継承されます。)

このページのトップへ

解説

WebSiteMiscEventsClass オブジェクトに対するこのインターフェイスを取得するには、WebSiteMiscEvents プロパティを使用します。

[!メモ]

このクラスで提供される機能は、Visual Studio 2005 以降のバージョンの Visual Studio で使用できます。これは、Visual Web Developer Express Edition では使用できません。

次に示すマクロ コードの例は、DTE (Development Tools Extensibility) オブジェクトを介して現在の 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

参照

関連項目

VsWebSite 名前空間

DTE

VSWebSite

VSWebSiteEvents

VSWebSiteEvents

WebSiteMiscEvents

WebSiteMiscEventsClass

その他の技術情報

オートメーション アセンブリおよび DTE2 オブジェクトの参照

方法 : マクロでイベントを処理する