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(){...}
}