IDebugObject2::IsEncOutdated

This method determines whether the Edit and Continue status of this object or of the parent container is out of date. A custom expression evaluator does not implement this method and always returns E_NOTIMPL.

HRESULT IsEncOutdated(
   BOOL* pfEncOutdated
);
int IsEncOutdated(
   out int pfEncOutdated
);

Parameters

  • pfEncOutdated
    [out] Nonzero (TRUE) if the Edit and Continue state is out of date, zero (FALSE) if it is not.

Return Value

If successful, returns S_OK; otherwise, returns an error code.

备注

A custom expression evaluator should always return E_NOTIMPL.

See Also

Reference

IDebugObject2