Sxta.Rti1516.BoostrapProtocol.InteractionManager.RemoveReceiveInteractionDelegate C# (CSharp) Méthode

RemoveReceiveInteractionDelegate() public méthode

Remove a delegate for the process of interactions.
public RemoveReceiveInteractionDelegate ( Type msgType, ReceiveInteractionDelegate interactionDelegate ) : void
msgType Type
interactionDelegate ReceiveInteractionDelegate
Résultat void
        public void RemoveReceiveInteractionDelegate(Type msgType, ReceiveInteractionDelegate interactionDelegate)
        {
            if (interactionDelegates.ContainsKey(msgType))
                interactionDelegates.Remove(msgType);
        }