Mono.Addins.ConditionType.NotifyChanged C# (CSharp) Method

NotifyChanged() public method

Notifies that the condition has changed, and that it has to be re-evaluated.
public NotifyChanged ( ) : void
return void
        public void NotifyChanged()
        {
            if (Changed != null)
                Changed (this, EventArgs.Empty);
        }