次の方法で共有


AssemblyReferencesEventsClass クラス

VSWebSite オブジェクトの References プロパティのイベントを表します。このクラスの機能にアクセスするには、AssemblyReferencesEvents プロパティから取得した AssemblyReferencesEvents オブジェクトを使用します。このクラスからインスタンス化しないでください。

継承階層

System.Object
  VsWebSite.AssemblyReferencesEventsClass

名前空間:  VsWebSite
アセンブリ:  VsWebSite.Interop (VsWebSite.Interop.dll 内)

構文

'宣言
<GuidAttribute("F11526E7-4102-4070-9B60-BD4F5CD3006B")> _
<ClassInterfaceAttribute()> _
Public Class AssemblyReferencesEventsClass _
    Implements _AssemblyReferencesEvents, AssemblyReferencesEvents, _dispAssemblyReferencesEvents_Event
[GuidAttribute("F11526E7-4102-4070-9B60-BD4F5CD3006B")]
[ClassInterfaceAttribute()]
public class AssemblyReferencesEventsClass : _AssemblyReferencesEvents, 
    AssemblyReferencesEvents, _dispAssemblyReferencesEvents_Event
[GuidAttribute(L"F11526E7-4102-4070-9B60-BD4F5CD3006B")]
[ClassInterfaceAttribute()]
public ref class AssemblyReferencesEventsClass : _AssemblyReferencesEvents, 
    AssemblyReferencesEvents, _dispAssemblyReferencesEvents_Event
[<GuidAttribute("F11526E7-4102-4070-9B60-BD4F5CD3006B")>]
[<ClassInterfaceAttribute()>]
type AssemblyReferencesEventsClass =  
    class
        interface _AssemblyReferencesEvents
        interface AssemblyReferencesEvents
        interface _dispAssemblyReferencesEvents_Event
    end
public class AssemblyReferencesEventsClass implements _AssemblyReferencesEvents, AssemblyReferencesEvents, _dispAssemblyReferencesEvents_Event

AssemblyReferencesEventsClass 型で公開されるメンバーは以下のとおりです。

コンストラクター

  名前 説明
パブリック メソッド AssemblyReferencesEventsClass インフラストラクチャ。内部でのみ使用されます。このクラスは、AssemblyReferencesEvents で提供される機能にアクセスします。このクラスからインスタンス化しないでください。

このページのトップへ

メソッド

  名前 説明
パブリック メソッド add_AssemblyReferenceAdded インフラストラクチャ。このメソッドは、.NET Framework インフラストラクチャをサポートしますが、コードから直接使用するためのものではありません。
パブリック メソッド add_AssemblyReferenceRemoved インフラストラクチャ。このメソッドは、.NET Framework インフラストラクチャをサポートしますが、コードから直接使用するためのものではありません。
パブリック メソッド Equals 指定のオブジェクトが現在のオブジェクトと等しいかどうかを判断します。 (Object から継承されます。)
プロテクト メソッド Finalize オブジェクトがガベージ コレクションにより収集される前に、そのオブジェクトがリソースを解放し、その他のクリーンアップ操作を実行できるようにします。 (Object から継承されます。)
パブリック メソッド GetHashCode 特定の型のハッシュ関数として機能します。 (Object から継承されます。)
パブリック メソッド GetType 現在のインスタンスの Type を取得します。 (Object から継承されます。)
プロテクト メソッド MemberwiseClone 現在の Object の簡易コピーを作成します。 (Object から継承されます。)
パブリック メソッド remove_AssemblyReferenceAdded インフラストラクチャ。このメソッドは、.NET Framework インフラストラクチャをサポートしますが、コードから直接使用するためのものではありません。
パブリック メソッド remove_AssemblyReferenceRemoved インフラストラクチャ。このメソッドは、.NET Framework インフラストラクチャをサポートしますが、コードから直接使用するためのものではありません。
パブリック メソッド ToString 現在のオブジェクトを表す文字列を返します。 (Object から継承されます。)

このページのトップへ

イベント

  名前 説明
パブリック イベント AssemblyReferenceAdded Web サイト内のアセンブリ参照が追加または変更されたときに発生します。
パブリック イベント AssemblyReferenceRemoved Web サイト内のアセンブリ参照が削除または変更されたときに発生します。

このページのトップへ

解説

このクラスには、AssemblyReferencesEvents プロパティから取得できる AssemblyReferencesEvents インターフェイスを通じてアクセスします。

[!メモ]

このクラスで提供される機能は、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 AssemblyRefsEvents As _
    VsWebSite.AssemblyReferencesEvents

スレッド セーフ

この型のすべてのパブリック static (Visual Basic では Shared) メンバーは、スレッド セーフです。インスタンス メンバーの場合は、スレッド セーフであるとは限りません。

参照

関連項目

VsWebSite 名前空間

DTE

VSWebSite

VSWebSiteEvents

VSWebSiteEvents

AssemblyReferencesEvents

AssemblyReferencesEvents

その他の技術情報

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

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