IDebugObject2::IsEncOutdated

Note

This article applies to Visual Studio 2015. If you're looking for the latest Visual Studio documentation, see Visual Studio documentation. We recommend upgrading to the latest version of Visual Studio. Download it here

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.

Syntax

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.

Note

A custom expression evaluator should always return E_NOTIMPL.

See Also

IDebugObject2