Sxta.Rti1516.BoostrapProtocol.InteractionManager.RemoveInteractionListener C# (CSharp) Method

RemoveInteractionListener() public method

Removes a listener for the interactions.
public RemoveInteractionListener ( IInteractionListener il ) : void
il IInteractionListener the listener object to Remove
return void
        public virtual void RemoveInteractionListener(IInteractionListener il)
        {
            lock (interactionListeners)
            {
                interactionListeners.Remove(il);
            }
        }