IVsFindTarget.NotifyFindTarget(UInt32) Method

Definition

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.

Applies to