Change View Event

Hi,

Is there an event in BackgroundPlugin to check if user change views (like init or close)?

public class TestPluginBackgroundPlugin : BackgroundPlugin{
 
        /// <summary>
        /// Called by the Environment when the user has logged in.
        /// </summary>
        public override void Init()
        {...}
 
        /// <summary>
        /// Called by the Environment when the user log's out.
        /// You should close all remote sessions and flush cache information, as the
        /// user might logon to another server next time.
        /// </summary>
        public override void Close(){...}
 
}

Changing views and a lot of other user interaction can be monitor by listening for messages. Please explore the Message Tester plugin sample.

https://doc.developer.milestonesys.com/html/index.html?base=samples/pluginsamples/messagetester/readme.html&tree=tree_1.html

https://github.com/milestonesys/mipsdk-samples-plugin