public InteractionHandler Add(InteractionStaticDelegate reaction) { if (handler == null) { handler = reaction; } else { handler += reaction; } return(this); }
public InteractionHandler Set(InteractionStaticDelegate reaction) { handler = reaction; return this; }
public InteractionHandler Set(InteractionMemberDelegate reaction) { handler = ToStaticInteractionDelegate(reaction); return this; }
public InteractionHandler Clear() { handler = null; return this; }
public InteractionHandler Add(InteractionStaticDelegate reaction) { if (handler == null) handler = reaction; else handler += reaction; return this; }
public InteractionHandler Set(InteractionStaticDelegate reaction) { handler = reaction; return(this); }
public InteractionHandler Set(InteractionMemberDelegate reaction) { handler = ToStaticInteractionDelegate(reaction); return(this); }
public InteractionHandler Clear() { handler = null; return(this); }