IVsWebServiceEvents Interface
Defines events called when a Web service is removed, renamed, or changed. Used as an argument to the AdviseWebServiceEvents method of the IVsWebService interface.
Namespace: Microsoft.VisualStudio.Shell.Interop
Assembly: Microsoft.VisualStudio.Shell.Interop.8.0 (in Microsoft.VisualStudio.Shell.Interop.8.0.dll)
Syntax
'Declaration
<GuidAttribute("F20AB4A1-4BA3-4842-AC78-2550669F751A")> _
<InterfaceTypeAttribute()> _
Public Interface IVsWebServiceEvents
[GuidAttribute("F20AB4A1-4BA3-4842-AC78-2550669F751A")]
[InterfaceTypeAttribute()]
public interface IVsWebServiceEvents
[GuidAttribute(L"F20AB4A1-4BA3-4842-AC78-2550669F751A")]
[InterfaceTypeAttribute()]
public interface class IVsWebServiceEvents
[<GuidAttribute("F20AB4A1-4BA3-4842-AC78-2550669F751A")>]
[<InterfaceTypeAttribute()>]
type IVsWebServiceEvents = interface end
public interface IVsWebServiceEvents
The IVsWebServiceEvents type exposes the following members.
Methods
Name | Description | |
---|---|---|
OnChanged | Method called when the Web service changes because of an edit. Your code should refresh references to the Web service after this event. | |
OnRemoved | Method called when a Web service is removed. | |
OnRenamed | Method called when a Web service is renamed. |
Top