PowerShellHtmlConsole.PSRemoteHost.NotifyEndApplication C# (CSharp) Method

NotifyEndApplication() public method

Notifies the host that the Windows PowerShell engine has completed the execution of a legacy command. Typically it is used to restore state that was changed by a child process after the child exits. This implementation does nothing and simply returns.
public NotifyEndApplication ( ) : void
return void
        public override void NotifyEndApplication()
        {
            return; // Do nothing.
        }