GSF.ServiceProcess.ServiceHelper.OnUpdatedStatus C# (CSharp) Method

OnUpdatedStatus() protected method

Raises the UpdatedStatus event with the updated status message.
This overload combines string.Format and SendStatusMessage for convenience.
protected OnUpdatedStatus ( System.Guid clientID, string status, UpdateType type ) : void
clientID System.Guid ID of the client receiving the message.
status string Updated status message.
type UpdateType of status message.
return void
        protected virtual void OnUpdatedStatus(Guid clientID, string status, UpdateType type)
        {
            if ((object)UpdatedStatus != null)
                UpdatedStatus(this, new EventArgs<Guid, string, UpdateType>(clientID, status, type));
        }
ServiceHelper