public bool OnNewProcessStarted(string commandLine)
    {
        if (!isCallBack)
        {
            remoteObject.isCallBack = true;
            return(remoteObject.OnNewProcessStarted(commandLine));
        }

        if (OnNewProcessStartedHandler != null)
        {
            return(OnNewProcessStartedHandler(value));
        }
        return(false);
    }