IVsFindTarget.NotifyFindTarget(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.
Sends notification to a find target of a change in status.
public:
int NotifyFindTarget(System::UInt32 notification);
public:
int NotifyFindTarget(unsigned int notification);
int NotifyFindTarget(unsigned int notification);
public int NotifyFindTarget (uint notification);
abstract member NotifyFindTarget : uint32 -> int
Public Function NotifyFindTarget (notification As UInteger) As Integer
Parameters
- notification
- UInt32
[in] Specifies notification. Values are taken from the __VSFTNOTIFY enumeration.
Returns
If the method succeeds, it returns S_OK. If it fails, it returns an error code.
Remarks
COM Signature
From textmgr.idl:
HRESULT IVsFindTarget::NotifyFindTarget(
[in] VSFTNOTIFY notification
);
The environment will call NotifyFindTarget
to notify each find target that a change of state is imminent. You can ignore the notification, or respond in whatever manner is appropriate to your editor.