Catel.Windows.Interactivity.InteractivityManager.UnregisterBehavior C# (CSharp) Method

UnregisterBehavior() public method

Unregisters the behavior.
The is null.
public UnregisterBehavior ( IBehavior behavior ) : void
behavior IBehavior The behavior.
return void
        public void UnregisterBehavior(IBehavior behavior)
        {
            Argument.IsNotNull("behavior", behavior);

            //_behaviors.Remove(behavior);

            BehaviorUnloaded.SafeInvoke(this, () => new BehaviorEventArgs(behavior));
        }