Detect the OSC Exit before the Signout Prompt
Content
Is there anyway to detect the OSC Exit immediately after clicking Exit in the console and before the console close down? In the following code Notify() is only hit after we click Yes in the Signout prompt to Signout from OSC.
Code Snippet
public class MyAddIn : IEventLogout { public void Notify() { // Do something } public bool Initialize(IGlobalContext context) { _globalContext = context; return true; } } }
0