RunningDocumentTable.Unadvise(UInt32) Method
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Indicates the client is no longer interested in receiving Running Document Table (RDT) events.
public:
void Unadvise(System::UInt32 cookie);
public:
void Unadvise(unsigned int cookie);
void Unadvise(unsigned int cookie);
public void Unadvise (uint cookie);
member this.Unadvise : uint32 -> unit
Public Sub Unadvise (cookie As UInteger)
Parameters
- cookie
- UInt32
[in] A unique value returned from the Advise(IVsRunningDocTableEvents) method. See Remarks.
Remarks
This method is called when the client no longer wants to listen for RDT events. The cookie is the value that is associated with an IVsRunningDocTableEvents object and was returned from the Advise
method.