IActiveScriptSite::OnEnterScript

Informs the host that the scripting engine has begun executing the script code.

Syntax

HRESULT OnEnterScript(void);  

Return Value

Returns S_OK if successful.

Remarks

The scripting engine must call this method on every entry or reentry into the scripting engine. For example, if the script calls an object that then fires an event handled by the scripting engine, the scripting engine must call IActiveScriptSite::OnEnterScript before executing the event, and must call the IActiveScriptSite::OnLeaveScript method after executing the event but before returning to the object that fired the event. Calls to this method can be nested. Every call to this method requires a corresponding call to IActiveScriptSite::OnLeaveScript.

See also

IActiveScriptSite