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خاصية إلى الحصول على هذه الواجهة إلى WebSiteMiscEventsClassالكائن.
ملاحظة
الوظيفة التي يوفرها th هو الفئة هو متوفرة في إصدارات Studio Vهوual بدءاً من Vهوual Studio 2005. هو غير متوفرة في Vهوual ويب المطور Express Edition.
أمثلة
مثال التعليمة البرمجية الماكرو التالي يوضح كيفية إنشاء مرجع إلى الحالي VSWebSiteكائن من خلال الامتداد أدوات تطوير (DTE) كائن والتسجيل على حدث. Th هو عينة هو جزءا من نموذج تعليمات برمجية بقعة صغيرة ل 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