VSProjectEvents.ReferencesEvents プロパティ
更新 : 2007 年 11 月
References コレクションのイベントにアクセスできるようにする ReferencesEvents オブジェクトを取得します。
名前空間 : VSLangProj
アセンブリ : VSLangProj (VSLangProj.dll 内)
構文
'宣言
ReadOnly Property ReferencesEvents As ReferencesEvents
'使用
Dim instance As VSProjectEvents
Dim value As ReferencesEvents
value = instance.ReferencesEvents
ReferencesEvents ReferencesEvents { get; }
property ReferencesEvents^ ReferencesEvents {
ReferencesEvents^ get ();
}
function get ReferencesEvents () : ReferencesEvents
プロパティ値
型 : VSLangProj.ReferencesEvents
ReferencesEvents オブジェクトを返します。
解説
ReferencesEvents プロパティを使用すると、ReferenceAdded、ReferenceChanged、ReferenceRemoved の 3 つのイベントにアクセスできます。
例
ReferencesEvents プロパティを使用して、特定のプロジェクトのイベント処理メソッドを関連付ける例を次に示します。
' Macro Editor
' Connects trivial methods to the ReferenceAdded and ReferenceDeleted
' events of the first project in the solution.
Imports VSLangProj
Sub ConnectEvents()
Dim proj As Project = DTE.Solution.Projects.Item(1)
Dim vsproj As VSProject = CType(proj.Object, VSProject)
Dim refEvents As ReferencesEvents = vsproj.Events.ReferencesEvents
AddHandler refEvents.ReferenceAdded, AddressOf ReferenceAdded
AddHandler refEvents.ReferenceRemoved, AddressOf ReferenceRemoved
AddHandler refEvents.ReferenceChanged, AddressOf ReferenceChanged
End Sub
Sub ReferenceRemoved(ByVal removedRef As Reference)
MsgBox("The reference for " & removedRef.Name & " was removed.")
End Sub
Sub ReferenceChanged(ByVal removedRef As Reference)
MsgBox("The reference for " & removedRef.Name & " was changed.")
End Sub
Sub ReferenceAdded(ByVal addedRef As Reference)
MsgBox("The reference for " & addedRef.Name & " was added.")
End Sub
アクセス許可
- 直前の呼び出し元に対する完全な信頼。このメンバは、部分的に信頼されているコードから使用することはできません。詳細については、「部分信頼コードからのライブラリの使用」を参照してください。